/* Dropdown Styling */
.clr-filter {
    margin-bottom: 30px;
}

.clr-filter-select {
    width: 100%;
    min-height: 2.75rem;
    padding: 0.5rem 2.5rem 0.5rem 0.75rem;
    border: 1px solid rgb(50, 50, 62);
    background-color: white;
    color: #000;
    font-size: 16px;
    line-height: 1.6;
    border-radius: 0;
    margin-bottom: 15px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
}

/* Results Container */
#clr-results {
    margin-top: 30px;
}

/* CLR Entry Styling */
.clr-rep {
    border: 1px solid rgb(50, 50, 62);
    padding: 25px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.clr-rep-image {
    flex: 0 0 150px;
    margin-right: 25px;
}

.clr-rep-image img {
    width: 100%;
    height: auto;
    display: block;
}

.clr-rep-details {
    flex: 1;
}

.clr-rep-name {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #000;
}

.clr-rep-territory {
    display: none;
   /* font-size: 16px;
    margin-bottom: 25px;
    color: #666;*/
}

.view-details {
    display: inline-block;
    padding: 12px 24px;
    background-color: #E35705;
    color: white !important;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
}

.view-details:hover {
    background-color: #B34A04;
}
/* Add to existing CSS */  
.no-results {  
    color: #666;  
    font-size: 16px;  
    padding: 20px;  
    border: 1px solid #ddd;  
    text-align: center;  
}  
  
.error {  
    color: #dc3545;  
    font-size: 16px;  
    padding: 20px;  
    border: 1px solid #dc3545;  
    text-align: center;  
}  
  
/* Fix dropdown placeholder alignment */  
.clr-filter-select option[value=""][disabled] {  
    display: none;  
}