/* ============================================ */
/* PUBLIC DRIVERS PAGE STYLES
/* ============================================ */

.driver-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

.page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-family: 'Abril Fatface', serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.page-header .subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

/* Filter Bar */
.filter-bar {
    background: rgba(0, 128, 128, 0.85);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.az-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.az-menu a {
    display: inline-block;
    padding: 0.5rem 0.8rem;
    text-decoration: none;
    font-family: 'Abril Fatface', serif;
    font-size: 1.2rem;
    color: #FFF;
    background: transparent;
    border-radius: 4px;
    transition: all 0.2s;
}

.az-menu a:hover {
    background: #00cccc;
    color: white;
}

.az-menu a.active {
    background: #008282;
    color: white;
}

.search-form {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.search-form input {
    flex: 1;
    max-width: 400px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.search-form input:focus {
    outline: none;
    border-color: #008282;
}

.search-form button {
    padding: 0.8rem 1.5rem;
    background: #008282;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Abril Fatface', serif;
    font-size: 1rem;
    transition: opacity 0.2s;
}

.search-form button:hover {
    opacity: 0.85;
}

.filter-info {
    text-align: center;
    margin-top: 1rem;
    padding: 0.5rem;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    color: #fff;
    font-size: 0.9rem;
}

.filter-info a {
    color: #fff;
    text-decoration: underline;
}

.filter-info a:hover {
    color: #e89b0f;
}

/* Birthday Section */
.birthday-section {
    background: #ffffff;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e2dfd9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.birthday-section h3 {
    font-family: 'Abril Fatface', serif;
    font-size: 1.5rem;
    color: #008282;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e89b0f;
    display: inline-block;
}

/* Results Section */
.results-section {
    background: #ffffff;
    padding: 1.5rem;
    border: 1px solid #e2dfd9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.results-section h3 {
    font-family: 'Abril Fatface', serif;
    font-size: 1.5rem;
    color: #1a2a2a;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2dfd9;
}

.result-count {
    font-size: 0.9rem;
    color: #888;
    font-weight: normal;
}

/* Driver Grid */
.driver-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.driver-card {
    background: #ffffff;
    border: 1px solid #e2dfd9;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: 0.2s ease;
}

.driver-card:hover {
    border-color: #008282;
    box-shadow: 0 0 10px rgba(0,130,130,0.25);
    transform: translateY(-2px);
}

.driver-card a {
    text-decoration: none;
    color: #1a2a2a;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.driver-card a:hover {
    color: #008282;
}

.driver-card small {
    font-size: 0.8rem;
    color: #888;
}

/* No Results & Prompt */
.no-results {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-style: italic;
}

.prompt-message {
    text-align: center;
    padding: 3rem;
    color: #666;
    background: #f5f3ef;
    border-radius: 8px;
}

.clear-link {
    color: #008282;
    text-decoration: none;
}

.clear-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .driver-container {
        padding: 1rem;
    }
    
    .az-menu a {
        font-size: 1rem;
        padding: 0.35rem 0.7rem;
    }
    
    .search-form {
        flex-direction: column;
        align-items: center;
    }
    
    .search-form input {
        max-width: 100%;
        width: 100%;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .driver-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .birthday-section h3,
    .results-section h3 {
        font-size: 1.2rem;
    }
}