*{
    box-sizing: border-box;
}
#jj-customers-list table {
    width: 100%;
    border-collapse: collapse;
}

#jj-customers-list th, #jj-customers-list td {
    border: 1px solid #ddd;
    padding: 8px;
}

#jj-customers-list th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #f2f2f2;
}

.customer-image {
    width: 50px;
    height: 50px;
}

/* Basic styling for the customer filter form */
#jj-customers-filter {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}
.jj-customers-filter-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 15px;
}
.jj-customers-selection-wrapper {
	display: flex;
	gap: 10px;
}
#jj-customers-filter select,
#jj-customers-filter button {
    margin-right: 10px;
  padding: 6px 30px 6px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

/* Button styles */
#jj-customers-filter button {
    background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 4px 20px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 5px;
}
.jj-customers-selection-wrapper select {
	width: 100%;
}
#jj-customers-filter button:hover {
    background-color: #005177;
}

/* Table styling */
#jj-customers-list table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

#jj-customers-list th,
#jj-customers-list td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    line-height: normal;
}

#jj-customers-list th {
    background-color: #f1f1f1;
    	line-height: normal;
}

#jj-customers-list tr:hover {
    background-color: #f9f9f9;
}

/* Image styling */
#jj-customers-list img {
    border-radius: 50%;
}
@media (max-width: 767px) {
    .jj-customers-selection-wrapper {display: block;}
    #customer_phone {margin-block: 12px;}
    .jj-customers-button-wrapper {width: 100%;text-align: center;}
    #jj-customers-list th {
	font-size: 10px;
}
#jj-customers-list td {
	font-size: 12px;
}
}


