/* assets/css/search.css */
.dse-doctor-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.dse-doctor-card:hover {
    transform: translateY(-2px);
}

.dse-doctor-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.dse-doctor-card h3 a {
    text-decoration: none;
    color: inherit;
}

.dse-doctor-card h3 a:hover {
    color: #3b82f6;
}

.dse-verified-badge {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5rem;
}

.dse-excerpt {
    color: #4b5563;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.dse-view-button {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-size: 0.875rem;
    transition: background-color 0.2s;
}

.dse-view-button:hover {
    background: #1f2937;
}

.dse-no-doctors-banner {
    text-align: center;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.dse-no-doctors-banner h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.dse-no-doctors-banner p {
    color: #4b5563;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.pagination a {
    color: #3b82f6;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}

.pagination a:hover {
    background: #eff6ff;
}

.pagination .current {
    background: #3b82f6;
    color: #ffffff;
}