.card-c69c3f4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 500px;
    height: 300px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    background-color: #fff;
    padding: 16px;
    margin: 16px;
    &:hover {
        background-color: #f9f9f9;
        transform: scale(1.05);
    }
    transition-duration: 0.3s;
}

@media (max-width: 600px) {
    .card-c69c3f4 {
        width: 90%;
    }
}


.sidebar-d380121 {
    height: 105vh;
    position: fixed;
    min-width: 30px;
    top: 0;
    left: 0;
    padding: 10px;
    display: flex;
    flex-direction: column;
    background-color: var(--rust-bg);
    color: var(--rust-fc);
    .active-d380121 {
        color: #e69f67;
    }
}

@media (max-width: 600px) {
    .sidebar-d380121 {
        width: 100vw;
        height: 42px;
    }
}
.navigation-d380121 {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;

    a {
        color: inherit;
        text-decoration: none;
    }
}

@media (max-width: 600px) {
    .navigation-d380121 {
        flex-direction: row;
    }
}
.collapsed-d380121 {
    color: white;
}
