/* styles.css */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.navigation {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 250px;
    background-color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.menuToggle {
    width: 30px;
    height: 30px;
    background-color: #fff;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: -45px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li.list {
    position: relative;
}

li.list a {
    display: flex;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    color: #fff;
    transition: background 0.3s ease;
    border-left: 5px solid transparent;
    margin: 5px 0;
}

li.list.active a {
    background: var(--clr);
    border-left: 5px solid var(--clr);
}

li.list a .icon {
    font-size: 20px;
    margin-right: 15px;
}

li.list a .text {
    font-size: 16px;
}

.menuToggle {
    display: none;
}

@media (max-width: 768px) {
    .navigation {
        width: 200px;
        left: -200px;
    }

    .navigation.active {
        left: 0;
    }

    .menuToggle {
        display: block;
    }
}
