﻿/* ---------- Dashboard Container ---------- */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    color: #37352f;
}

/* ---------- Dashboard Header ---------- */
.dashboard-header {
    margin-bottom: 3rem;
}

.dashboard-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #37352f;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.dashboard-subtitle {
    font-size: 1.1rem;
    color: #73726e;
    margin: 0;
    font-weight: 400;
}

/* ---------- Dashboard Grid ---------- */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
}

/* ---------- Dashboard Cards ---------- */
.dashboard-card {
    position: relative;
    display: block;
    padding: 2rem;
    background-color: #ffffff;
    border: 1px solid #e9e9e7;
    border-radius: 12px;
    text-decoration: none;
    color: #37352f;
    transition: all 0.2s ease;
    cursor: pointer;
}

    .dashboard-card:hover {
        border-color: #d3d1cb;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transform: translateY(-3px);
        text-decoration: none;
        color: #37352f;
    }

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #37352f;
}

.card-description {
    font-size: 0.95rem;
    color: #73726e;
    line-height: 1.5;
    margin: 0;
}

.card-arrow {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.25rem;
    color: #d3d1cb;
    transition: all 0.2s ease;
}

.dashboard-card:hover .card-arrow {
    color: #37352f;
    transform: translateX(4px);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .dashboard-container {
        padding: 2rem 1.5rem;
    }

    .dashboard-title {
        font-size: 2rem;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dashboard-card {
        padding: 1.5rem;
    }
}
