/* Dashboard Panel Styles */
.dashboard-container {
    display: flex;
    min-height: 100vh;
    background: #000;
}

.dashboard-nav {
    width: 220px;
    background: #111;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0 0 0;
    box-shadow: 2px 0 20px rgba(129,75,200,0.08);
    z-index: 10;
}
.dashboard-logo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #814bc8, #c84baf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.dashboard-nav ul {
    list-style: none;
    padding: 0;
    width: 100%;
}
.dashboard-nav ul li {
    padding: 18px 0;
    text-align: center;
    font-size: 18px;
    color: #bbb;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.dashboard-nav ul li:hover {
    background: #222;
    color: #814bc8;
}
.dashboard-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 30px 30px 30px;
}
.dashboard-title {
    font-size: 36px;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #fff, #814bc8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}
.dashboard-graphs {
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}
.circle-graph {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #181818;
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(129,75,200,0.08);
    padding: 32px 24px 24px 24px;
    min-width: 200px;
}
.circle-label {
    margin-top: 18px;
    font-size: 20px;
    color: #bbb;
    letter-spacing: 0.05em;
    text-align: center;
}
@media (max-width: 900px) {
    .dashboard-graphs {
        flex-direction: column;
        gap: 40px;
    }
    .dashboard-nav {
        width: 100px;
        padding: 20px 0 0 0;
    }
    .dashboard-logo {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .dashboard-main {
        padding: 30px 10px 10px 10px;
    }
}
