/*
========================================
STEUERBERATER VERZEICHNIS PLUGIN STYLES
========================================
*/

/* Basis-Styling für alle Listen */
.bundeslaender-liste,
.staedte-liste,
.beliebte-steuerberater-liste,
.zufaellige-steuerberater-liste {
    max-width: 600px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.bundeslaender-liste h2,
.staedte-liste h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}

/* Einheitliches Link-Styling für alle Listen */
.bundesland-link,
.stadt-link,
.steuerberater-link,
.zufaellige-steuerberater-link {
    display: block;
    padding: 12px 15px;
    margin: 8px 0;
    text-decoration: none;
    color: #4774FB;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.bundesland-link:hover,
.stadt-link:hover,
.steuerberater-link:hover,
.zufaellige-steuerberater-link:hover {
    background-color: #f0f4ff;
    border-color: #4774FB;
    color: #3d63e8;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(71, 116, 251, 0.15);
}

.bundesland-link:active,
.stadt-link:active,
.steuerberater-link:active,
.zufaellige-steuerberater-link:active {
    transform: translateY(0);
}

/* Spezielle Emojis für unterschiedliche Listen */
.bundesland-link:before {
    content: "🗺️ ";
    margin-right: 8px;
}

.stadt-link:before {
    content: "🏙️ ";
    margin-right: 8px;
}

.steuerberater-link:before {
    content: "⭐ ";
    margin-right: 8px;
}

.zufaellige-steuerberater-link:before {
    content: "🏢 ";
    margin-right: 8px;
}

/* Focus-Zustand für Accessibility */
.bundesland-link:focus,
.stadt-link:focus,
.steuerberater-link:focus,
.zufaellige-steuerberater-link:focus {
    outline: 2px solid #4774FB;
    outline-offset: 2px;
}

/* Animation beim Laden */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation Delays */
.bundesland-link:nth-child(2), .stadt-link:nth-child(2), 
.steuerberater-link:nth-child(2), .zufaellige-steuerberater-link:nth-child(2) { 
    animation-delay: 0.1s; 
}

.bundesland-link:nth-child(3), .stadt-link:nth-child(3), 
.steuerberater-link:nth-child(3), .zufaellige-steuerberater-link:nth-child(3) { 
    animation-delay: 0.2s; 
}

.bundesland-link:nth-child(4), .stadt-link:nth-child(4), 
.steuerberater-link:nth-child(4), .zufaellige-steuerberater-link:nth-child(4) { 
    animation-delay: 0.3s; 
}

.bundesland-link:nth-child(5), .stadt-link:nth-child(5), 
.steuerberater-link:nth-child(5), .zufaellige-steuerberater-link:nth-child(5) { 
    animation-delay: 0.4s; 
}

.bundesland-link:nth-child(6), .stadt-link:nth-child(6), 
.steuerberater-link:nth-child(6), .zufaellige-steuerberater-link:nth-child(6) { 
    animation-delay: 0.5s; 
}

.bundesland-link:nth-child(7), .stadt-link:nth-child(7), 
.steuerberater-link:nth-child(7), .zufaellige-steuerberater-link:nth-child(7) { 
    animation-delay: 0.6s; 
}

.bundesland-link:nth-child(8), .stadt-link:nth-child(8), 
.steuerberater-link:nth-child(8), .zufaellige-steuerberater-link:nth-child(8) { 
    animation-delay: 0.7s; 
}

.bundesland-link:nth-child(9), .stadt-link:nth-child(9), 
.steuerberater-link:nth-child(9), .zufaellige-steuerberater-link:nth-child(9) { 
    animation-delay: 0.8s; 
}

/* Spezielle Hover-Intensität */
.staedte-liste .stadt-link:hover,
.beliebte-steuerberater-liste .steuerberater-link:hover,
.zufaellige-steuerberater-liste .zufaellige-steuerberater-link:hover {
    background-color: #f5f7ff;
    box-shadow: 0 3px 12px rgba(71, 116, 251, 0.2);
}

/*
========================================
KANZLEIEN IN DER NÄHE - GEO WIDGET
========================================
*/

/* Kanzleien in der Nähe Widget */
.kanzleien-in-der-naehe-liste {
    max-width: 600px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.kanzlei-naehe-link {
    display: block;
    padding: 18px;
    margin: 12px 0;
    text-decoration: none;
    color: #333;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.kanzlei-naehe-link:hover {
    background: #f0f4ff;
    border-color: #4774FB;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(71, 116, 251, 0.15);
}

.kanzlei-name {
    font-size: 18px;
    font-weight: 600;
    color: #4774FB;
    margin-bottom: 10px;
    line-height: 1.3;
}

.kanzlei-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #666;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.kanzlei-meta .rating {
    color: #4774FB;
    font-weight: 600;
}

.kanzlei-meta .stadt {
    color: #6c757d;
}

.kanzlei-meta .entfernung {
    color: #28a745;
    font-weight: 600;
}

.kanzlei-actions {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #6c757d;
    margin-top: 8px;
    flex-wrap: wrap;
}

.kanzlei-actions .telefon {
    color: #17a2b8;
}

.kanzlei-actions .termin-link {
    color: #28a745;
    font-weight: 600;
}

.kanzleien-naehe-empty {
    text-align: center;
    padding: 20px;
    color: #6c757d;
    font-style: italic;
}

/*
========================================
RESPONSIVE DESIGN
========================================
*/

@media (max-width: 768px) {
    .bundeslaender-liste,
    .staedte-liste,
    .beliebte-steuerberater-liste,
    .zufaellige-steuerberater-liste,
    .kanzleien-in-der-naehe-liste {
        max-width: 100%;
        margin: 10px;
        padding: 0 10px;
    }
    
    .bundesland-link,
    .stadt-link,
    .steuerberater-link,
    .zufaellige-steuerberater-link {
        padding: 10px 12px;
        font-size: 15px;
    }
    
    .kanzlei-meta,
    .kanzlei-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .kanzlei-naehe-link {
        padding: 15px;
    }
    
    .kanzlei-name {
        font-size: 16px;
    }
}

/*
========================================
ENDE STEUERBERATER VERZEICHNIS STYLES
========================================
*/