.dha-vet-dropdown {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
}

.vet-details {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    position: relative;
    display: none;
}

.vet-details.has-vet {
    display: block;
}

.vet-details p {
    margin: 0.5rem 0;
}

.vet-details strong {
    display: inline-block;
    width: 80px;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
}

.vet-details.loading .loading-overlay {
    display: flex;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#vet-selection-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    display: none;
}

#vet-selection-message.success {
    background: #d4edda;
    color: #155724;
}

#vet-selection-message.error {
    background: #f8d7da;
    color: #721c24;
}

#vet-selection-message.info {
    background: #cce5ff;
    color: #004085;
}

.inactive-vet-notice {
    color: #856404;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.inactive-vet-notice strong {
    display: block;
    margin-bottom: 5px;
}

.inactive-vet-info {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 10px;
    font-size: 13px;
}

.inactive-vet-info p {
    margin: 5px 0;
}