/* Dashboard Layout */
.dashboard-header {
    background: var(--anthrazit);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-header .logo {
    height: 36px;
}

.dashboard-header .user-info {
    color: var(--white);
    font-size: 0.9rem;
}

.dashboard-header .user-info a {
    color: var(--primary);
    margin-left: 1rem;
}

.dashboard-nav {
    background: var(--dark);
    padding: 0 2rem;
    display: flex;
    gap: 0;
}

.dashboard-nav a {
    color: var(--text-light);
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.dashboard-nav a:hover,
.dashboard-nav a.active {
    color: var(--white);
    border-bottom-color: var(--primary);
    text-decoration: none;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    font-family: 'Barlow Condensed', sans-serif;
}

.stat-card .stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Filter */
.filter-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-bar select,
.filter-bar input {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
}

/* Fall-Detail */
.fall-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.fall-detail-grid .detail-section h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.detail-row {
    display: flex;
    padding: 0.4rem 0;
}

.detail-row .label {
    font-weight: 600;
    color: var(--dark);
    min-width: 140px;
}

.fotos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.fotos-grid .foto-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.fotos-grid .foto-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.fotos-grid .foto-card .foto-label {
    padding: 0.5rem;
    font-size: 0.8rem;
    text-align: center;
    background: #fafafa;
}

/* Login */
.login-container {
    max-width: 400px;
    margin: 4rem auto;
}

.login-container h1 {
    text-align: center;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .fall-detail-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-nav {
        overflow-x: auto;
        padding: 0 1rem;
    }

    .filter-bar {
        flex-direction: column;
    }
}
