/**
 * Frontend Styles for Ärzteverzeichnis Plugin
 *
 * @package Aerzteverzeichnis
 * @version 3.5.0
 */

/* ==========================================================================
   VNDN Farbschema
   ========================================================================== */

.aedv-container {
    --vndn-koralle: #ED7161;
    --vndn-koralle-hover: #e05a49;
    --vndn-dunkelblau: #284353;
    --vndn-blaugrau: #698FAC;
    --vndn-hellblau: #00ABE8;
    --vndn-hellblau-hover: #0095cc;
    --vndn-text-primary: #284353;
    --vndn-text-secondary: #698FAC;
    --vndn-border: rgba(105, 143, 172, 0.25);
    --vndn-bg-light: #f8fafc;
}

/* ==========================================================================
   Container
   ========================================================================== */

/* Container */
.aedv-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

/* Filters Section */
.aedv-filters {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.aedv-filter-group {
    margin-bottom: 20px;
}

.aedv-filter-group:last-child {
    margin-bottom: 0;
}

.aedv-filter-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #212529;
    font-size: 14px;
}

.aedv-filter-group input[type="text"],
.aedv-filter-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.15s ease-in-out;
}

.aedv-filter-group input[type="text"]:focus,
.aedv-filter-group select:focus {
    border-color: #00ABE8;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 171, 232, 0.15);
}

/* Checkbox Group */
.aedv-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.aedv-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 6px 0;
}

.aedv-checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

.aedv-checkbox-label span {
    font-size: 14px;
}

/* Kompetenzfelder: Suchfeld + scrollbare Liste (viele Eintraege) */
.aedv-kf-search {
    margin-bottom: 10px;
}

.aedv-checkbox-group--scroll {
    max-height: 260px;
    overflow-y: auto;
    padding: 8px 10px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: #fff;
}

.aedv-checkbox-group--scroll .aedv-checkbox-label {
    padding: 6px 8px;
    border-radius: 4px;
}

.aedv-checkbox-group--scroll .aedv-checkbox-label:hover {
    background: #f0f9ff;
}

/*
 * Eigenstaendiges weisses Panel: dunkle Schrift erzwingen, damit die
 * Namen auch dann lesbar sind, wenn das (Divi-)Theme der Filter-Sidebar
 * eine weisse Schriftfarbe vererbt. Sonst weiss-auf-weiss = unsichtbar.
 */
.aedv-checkbox-group--scroll .aedv-checkbox-label span {
    color: #212529 !important;
}

.aedv-checkbox-group--scroll .aedv-checkbox-label[hidden] {
    display: none;
}

.aedv-kf-empty {
    margin: 6px 2px;
    font-size: 13px;
    color: #6c757d;
}

/* Schmaler, dezenter Scrollbalken */
.aedv-checkbox-group--scroll::-webkit-scrollbar {
    width: 8px;
}

.aedv-checkbox-group--scroll::-webkit-scrollbar-thumb {
    background: #ced4da;
    border-radius: 4px;
}

.aedv-checkbox-group--scroll::-webkit-scrollbar-thumb:hover {
    background: #adb5bd;
}


/* Info-Tooltip Icon in Filter-Liste */
.aedv-info-tooltip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-left: 6px;
    font-size: 14px;
    color: #00ABE8;
    cursor: help;
    position: relative;
    flex-shrink: 0;
}

.aedv-info-tooltip:hover {
    color: #284353;
}

.aedv-info-tooltip[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 400;
    white-space: normal;
    width: max-content;
    max-width: 280px;
    min-width: 150px;
    z-index: 99999;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    text-align: left;
    line-height: 1.5;
    pointer-events: none;
}

.aedv-info-tooltip[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #333;
    margin-bottom: -8px;
    z-index: 99999;
    pointer-events: none;
}

/* Radius Group */
.aedv-radius-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Filter Actions */
.aedv-filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.aedv-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.aedv-btn-primary {
    background: #00ABE8;
    color: #fff;
}

.aedv-btn-primary:hover {
    background: #0095cc;
}

.aedv-btn-secondary {
    background: transparent;
    border: 2px solid #698FAC;
    color: #698FAC;
}

.aedv-btn-secondary:hover {
    background: #698FAC;
    color: #fff;
}

/* Main Content Area - Two Column Layout */
.aedv-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

/* Single column when map is disabled */
.aedv-container[data-show-map="0"] .aedv-main {
    grid-template-columns: 1fr;
}

/* List Container */
.aedv-list-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* List Header */
.aedv-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    flex-wrap: wrap;
    gap: 10px;
}

.aedv-results-count {
    font-size: 16px;
    font-weight: 600;
}

.aedv-count {
    color: #00ABE8;
}

.aedv-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.aedv-sort label {
    font-size: 14px;
    font-weight: 600;
}

.aedv-sort select {
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}

/* Praxis List */
.aedv-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Praxis Card */
.aedv-card {
    display: flex;
    gap: 15px;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.2s;
    cursor: pointer;
    overflow: visible;
}

.aedv-card:hover {
    border-color: #00ABE8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.aedv-card.active {
    border-color: #00ABE8;
    background: #f0f9ff;
}

.aedv-card-content {
    flex: 1;
    min-width: 0;
}

/* Card Header mit Titel und Badge */
.aedv-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.aedv-card-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #284353;
    flex: 1;
}

/* Standorte Badge */
.aedv-standorte-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: linear-gradient(135deg, #ED7161 0%, #e05a49 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.aedv-standorte-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(237, 113, 97, 0.4);
}

.aedv-standorte-badge:active {
    transform: translateY(0);
}

/* Nächster Standort Hinweis (bei Umkreissuche) */
.aedv-nearest-location {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #2e7d32;
    border-left: 3px solid #4caf50;
}

.aedv-nearest-location.aedv-nearest-main {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1565c0;
    border-left-color: #2196f3;
}

.aedv-nearest-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.aedv-nearest-text {
    line-height: 1.4;
}

.aedv-nearest-text strong {
    font-weight: 600;
}

.aedv-card-doctors {
    margin-bottom: 12px;
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

.aedv-card-schwerpunkte {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
    overflow: visible;
    position: relative;
}

.aedv-tag {
    display: inline-block;
    padding: 4px 10px;
    background: #284353;
    color: #fff;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    transition: background 0.2s;
}

.aedv-tag:hover {
    background: #698FAC;
}

/* Schwerpunkt-Tooltips */
.aedv-container .aedv-tag.schwerpunkt-badge {
    position: relative;
    cursor: help;
}

.aedv-container .aedv-tag.schwerpunkt-badge[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333 !important;
    color: #fff !important;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 400;
    white-space: normal;
    max-width: 250px;
    min-width: 120px;
    z-index: 99999;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    text-align: center;
    line-height: 1.4;
    pointer-events: none;
    display: block;
}

.aedv-container .aedv-tag.schwerpunkt-badge[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: #333;
    margin-top: -4px;
    z-index: 99999;
    pointer-events: none;
    display: block;
}

.aedv-card-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
}

.aedv-card-info > div {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.aedv-icon {
    flex-shrink: 0;
    font-size: 16px;
}

.aedv-card-info a {
    color: #00ABE8;
    text-decoration: none;
}

.aedv-card-info a:hover {
    color: #ED7161;
    text-decoration: underline;
}

/* No Results */
.aedv-no-results {
    padding: 40px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
    color: #6c757d;
    font-size: 16px;
}

/* Pagination */
.aedv-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}

.aedv-pagination button {
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    min-width: 40px;
}

.aedv-pagination button:hover {
    background: #f8f9fa;
    border-color: #00ABE8;
}

.aedv-pagination button.active {
    background: #00ABE8;
    color: #fff;
    border-color: #00ABE8;
}

.aedv-pagination button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

/* Map Container */
.aedv-map-container {
    position: sticky;
    top: 20px;
    height: calc(100vh - 40px);
    max-height: 800px;
}

.aedv-map {
    width: 100%;
    height: 100%;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.aedv-map[hidden] {
    display: none !important;
}

/* Consent-Placeholder (DSGVO: Karte erst nach Einwilligung) */
.aedv-map-consent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 100%;
    padding: 24px;
    text-align: center;
    background: var(--vndn-bg-light);
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.aedv-map-consent-text {
    max-width: 48ch;
    margin: 0;
    color: var(--vndn-text-primary);
    font-size: 14px;
    line-height: 1.5;
}

/* Leaflet Popup Styling */
.leaflet-popup-content {
    margin: 15px;
}

.leaflet-popup-content h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 700;
}

.leaflet-popup-content p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
}

/* Loading Overlay */
.aedv-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-radius: 8px;
}

.aedv-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #00ABE8;
    border-radius: 50%;
    animation: aedv-spin 1s linear infinite;
}

@keyframes aedv-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom Marker Icons */
.aedv-marker-icon {
    width: 100%;
    height: 100%;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
}

.aedv-marker-icon.main {
    background: linear-gradient(135deg, #00ABE8 0%, #0095cc 100%);
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.aedv-marker-icon.branch {
    background: linear-gradient(135deg, #698FAC 0%, #284353 100%);
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.aedv-marker-icon::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.aedv-marker-icon.branch::after {
    width: 6px;
    height: 6px;
}

/* Leaflet Popup Erweiterungen */
.aedv-popup {
    min-width: 180px;
}

.aedv-popup-location {
    display: inline-block;
    padding: 2px 8px;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 8px;
}

.aedv-popup-route {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 12px;
    background: #00ABE8;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s;
}

.aedv-popup-route:hover {
    background: #0095cc;
}

/* Standorte Modal */
.aedv-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.aedv-modal.active {
    display: flex;
}

.aedv-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
}

.aedv-modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: aedv-modal-in 0.3s ease-out;
}

@keyframes aedv-modal-in {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.aedv-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border: none;
    background: #f0f0f1;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    transition: all 0.2s;
    z-index: 1;
}

.aedv-modal-close:hover {
    background: #dcdcde;
    color: #333;
}

.aedv-modal-title {
    margin: 0;
    padding: 20px 50px 20px 20px;
    font-size: 18px;
    font-weight: 700;
    color: #212529;
    border-bottom: 1px solid #dee2e6;
}

.aedv-modal-body {
    padding: 20px;
    max-height: calc(80vh - 80px);
    overflow-y: auto;
}

body.aedv-modal-open {
    overflow: hidden;
}

/* Standorte Liste im Modal */
.aedv-standorte-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.aedv-standort-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #698FAC;
}

.aedv-standort-item.is-main {
    border-left-color: #00ABE8;
    background: #f0f9ff;
}

.aedv-standort-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.aedv-standort-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 12px;
    color: #fff;
}

.aedv-standort-badge.main {
    background: #00ABE8;
}

.aedv-standort-badge.branch {
    background: #698FAC;
}

.aedv-standort-name {
    font-weight: 600;
    color: #212529;
}

/* Standort Info Zeilen (Arzt, Telefon, etc.) */
.aedv-standort-info,
.aedv-standort-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #495057;
    margin-bottom: 8px;
    line-height: 1.5;
}

.aedv-standort-info a {
    color: #00ABE8;
    text-decoration: none;
}

.aedv-standort-info a:hover {
    color: #ED7161;
    text-decoration: underline;
}

.aedv-standort-info-icon {
    flex-shrink: 0;
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.aedv-standort-address {
    color: #6c757d;
}

.aedv-standort-route,
.aedv-standort-map-btn {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    margin-right: 8px;
    margin-bottom: 4px;
}

.aedv-standort-route {
    background: #00ABE8;
    color: #fff !important;
    border: none;
}

.aedv-standort-route:hover {
    background: #0095cc;
    text-decoration: none !important;
}

.aedv-standort-map-btn {
    background: #fff;
    color: #00ABE8;
    border: 1px solid #00ABE8;
}

.aedv-standort-map-btn:hover {
    background: #f0f9ff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Stack layout on tablets and mobile */
    .aedv-main {
        grid-template-columns: 1fr;
    }

    .aedv-map-container {
        position: relative;
        top: 0;
        height: 500px;
        max-height: none;
        order: -1; /* Show map first */
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .aedv-container {
        padding: 15px;
    }

    .aedv-filters {
        padding: 15px;
    }

    .aedv-filter-actions {
        flex-direction: column;
    }

    .aedv-btn {
        width: 100%;
    }

    .aedv-radius-inputs {
        grid-template-columns: 1fr;
    }

    .aedv-list-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .aedv-sort {
        width: 100%;
        justify-content: space-between;
    }

    .aedv-sort select {
        flex: 1;
    }

    .aedv-card {
        flex-direction: column;
    }

    .aedv-card-header {
        flex-direction: column;
        gap: 8px;
    }

    .aedv-standorte-badge {
        align-self: flex-start;
    }

    .aedv-map-container {
        height: 400px;
    }

    /* Modal responsive */
    .aedv-modal-content {
        width: 95%;
        max-height: 90vh;
        margin: 10px;
    }

    .aedv-modal-title {
        padding: 15px 45px 15px 15px;
        font-size: 16px;
    }

    .aedv-modal-body {
        padding: 15px;
    }

    .aedv-standort-route,
    .aedv-standort-map-btn {
        display: block;
        text-align: center;
        margin-right: 0;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .aedv-card-title {
        font-size: 16px;
    }

    .aedv-card-info {
        font-size: 13px;
    }

    .aedv-pagination button {
        padding: 6px 10px;
        font-size: 13px;
        min-width: 35px;
    }
}

/* ==========================================
   Single Praxis View - Standorte Section
   ========================================== */

.aedv-single-standorte {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.aedv-single-standorte-title {
    margin: 0 0 25px 0;
    font-size: 24px;
    font-weight: 700;
    color: #212529;
}

.aedv-single-standorte-list {
    display: grid;
    gap: 20px;
}

@media (min-width: 768px) {
    .aedv-single-standorte-list {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

.aedv-single-standort {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #698FAC;
    transition: box-shadow 0.2s, transform 0.2s;
}

.aedv-single-standort:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.aedv-single-standort.is-main {
    border-left-color: #00ABE8;
}

.aedv-single-standort-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.aedv-single-standort-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}

.aedv-single-standort-icon.main {
    background: linear-gradient(135deg, #00ABE8 0%, #0095cc 100%);
}

.aedv-single-standort-icon.branch {
    background: linear-gradient(135deg, #698FAC 0%, #284353 100%);
}

.aedv-single-standort-name {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #212529;
}

.aedv-single-standort-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.aedv-single-standort-doctors,
.aedv-single-standort-address,
.aedv-single-standort-phone,
.aedv-single-standort-email,
.aedv-single-standort-website {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #495057;
}

.aedv-single-standort-doctors {
    font-style: italic;
    color: #6c757d;
}

.aedv-single-standort-doctors .aedv-icon,
.aedv-single-standort-address .aedv-icon,
.aedv-single-standort-phone .aedv-icon,
.aedv-single-standort-email .aedv-icon,
.aedv-single-standort-website .aedv-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.aedv-single-standort-phone a,
.aedv-single-standort-email a,
.aedv-single-standort-website a {
    color: #00ABE8;
    text-decoration: none;
}

.aedv-single-standort-phone a:hover,
.aedv-single-standort-email a:hover,
.aedv-single-standort-website a:hover {
    color: #ED7161;
    text-decoration: underline;
}

.aedv-single-standort-route {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #00ABE8 0%, #0095cc 100%);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    align-self: flex-start;
}

.aedv-single-standort-route:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 171, 232, 0.35);
}

/* Print Styles */
@media print {
    .aedv-filters,
    .aedv-map-container,
    .aedv-map-consent,
    .aedv-pagination {
        display: none;
    }

    .aedv-main {
        grid-template-columns: 1fr;
    }

    .aedv-card {
        page-break-inside: avoid;
    }
}
