﻿.dashboard-page {
    background-color: black;
    min-height: calc(100vh - 110px);
    padding: 40px 20px 60px 20px;
}

.dashboard-box {
    max-width: 1000px;
    margin: 0 auto;
}

.dashboard-title {
    font-size: 48px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.dashboard-text {
    color: #bdbdbd;
    font-size: 16px;
    margin-bottom: 30px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.dashboard-saving-panel {
    margin-top: 26px;
}

.dashboard-card {
    display: block;
    background-color: #171717;
    border: 1px solid #2f2f2f;
    border-radius: 18px;
    padding: 26px;
    color: white;
    transition: 0.2s;
}

    .dashboard-card:hover {
        background-color: #1d1d1d;
        border-color: #6fcf97;
        color: white;
        transform: translateY(-2px);
    }

.dashboard-card-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #6fcf97;
}

.dashboard-card-text {
    font-size: 15px;
    color: #bdbdbd;
    line-height: 1.5;
}

.dashboard-card-logout .dashboard-card-title {
    color: #f08080;
}

.dashboard-card-logout:hover {
    border-color: #f08080;
}

@media (max-width: 800px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-title {
        font-size: 38px;
    }
}
