body {
    font-family: "Rubik", sans-serif;
    background: #111827;
    color: white;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}
:root{
--Purple-600: hsl(246, 80%, 60%);
--Orange-300-work: hsl(15, 100%, 70%);
--Blue-300-play: hsl(195, 74%, 62%);
--Pink-400-study: hsl(348, 100%, 68%);
--Green-400-exercise: hsl(145, 58%, 55%);
--Purple-700-social: hsl(264, 64%, 52%);
--Yellow-300-self-care: hsl(43, 84%, 65%);
--Navy-950: hsl(226, 43%, 10%);
--Navy-900: hsl(235, 46%, 20%);
--Purple-500: hsl(235, 45%, 61%);
--Navy-200: hsl(236, 100%, 87%);
}

.container {
    margin-top: 30px;
    display: flex;
    gap: 30px;
    width: 80%;
}
.Sidebar {
    position: relative;
    top: 20px;
    background:var(--Purple-600);
    padding: 20px;
    border-radius: 10px;
    height: 55%;
    width: 200px;
    text-align: left;
}
.headshot{
    width: 70px;
    height: 70px;
}
.Sidebar h2 {
    font-size: 40px;
    margin-bottom: 20px;
}
.sidebar-btn{
    padding-top: 35px;
    border-radius: 5px;
    background: var(--Navy-900);
}

.toggle-btn {
    width: 100%;
    padding: 10px;
    background: var(--Navy-900);
    border: none;
    color: white;
    margin-bottom: 30px;
    border-radius: 5px;
    cursor: pointer;
    text-align: left;
}
.toggle-btn:hover {
    background: white;
    color: #4f46e5;
}
.dashboard {
    display: grid;
    margin-top: 50px;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex: 1;
}

.card {
    position: relative;
    top: -30px;
    background: var(--Navy-900);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}
.card h3{
    font-family: "Rubik", sans-serif;
    font-size: 30px;
    font-weight: 700;
}
.hours{
    font-family: "Rubik", sans-serif;
    font-size: 30px;
    font-weight: 700;
}
.complete-btn {
    margin-top: 10px;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    background: #6b7280;
    color: white;
    border-radius: 5px;
}

.complete-btn.completed {
    background: #10b981;
}
.work-icon{
    height: 70px;
    border-radius: 10px 10px 0 0;
    text-align: right;
    background: var(--Orange-300-work);
}
.icon{
    height: 40px;
}
.selfCare-icon{
    height: 70px;
    border-radius: 10px 10px 0 0;
    text-align: right;
    background: var(--Yellow-300-self-care);
}
.social-icon{
    height: 70px;
    border-radius: 10px 10px 0 0;
    text-align: right;
    background: var(--Purple-700-social);
}
.exercise-icon{
    height: 70px;
    border-radius: 10px 10px 0 0;
    text-align: right;
    background: var(--Green-400-exercise);
}
.study-icon{
    height: 70px;
    border-radius: 10px 10px 0 0;
    text-align: right;
    background: var(--Pink-400-study);
}
.play-icon{
    height: 70px;
    border-radius: 10px 10px 0 0;
    text-align: right;
    background: var(--Blue-300-play);
}
@media (max-width: 600px) {
    body{
        padding: 0;
    }
    .dashboard {
        grid-template-columns: 1fr; /* 1 column for phones */
        padding: 0;
        margin-top: 40px;
        width: 375px;
    }

    .container{
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        justify-content: center;
        margin-top: 0;
        width: 100%;
    }
    .Sidebar{
        height: 40%;
        width: 375px;
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }
    .Sidebar h2{
        font-size: 16px;
    }
    .card h3{
        font-size: 12px;
    }
    .hours{
        font-size: 12px;
    }
}