/* Home Index Styles */
.home-container {
    text-align: center;
    padding: 4rem 0;
}

.home-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.home-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.home-login-wrapper {
    margin-top: 2rem;
}

.dashboard-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.dashboard-section {
    margin-bottom: 3rem;
}

.dashboard-section-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dashboard-section-title.overdue {
    color: #dc2626;
}

.dashboard-grid {
    display: grid;
    gap: 1rem;
}

.dashboard-empty-state {
    text-align: center;
    padding: 3rem;
    background: #f8f9fa;
    border: 1px dashed #dee2e6;
}

.dashboard-empty-text {
    color: #6c757d;
    margin-bottom: 1rem;
}