/* Sol Menü Konteyneri */
.leftaside > .left-menu {
    width: 20rem;
    /* background-color: rgb(16, 16, 16);  */
    /* background-color: rgb(25, 225, 200); */
    background: none;
    /* color: rgb(250, 250, 250);  */
    color: rgb(16, 16, 16);
    position: relative;
    left: 1.5rem;
    min-height: 50%;
    height: min-content;
    padding: 1rem;
}

/* Menü İçindeki Bağlantılar */
.left-menu nav ul {
    list-style-type: none;
    padding: 0;
}

.left-menu nav ul li {
    margin: 1rem 0;
}

.left-menu nav ul li a {
    color: rgb(16, 16, 16); /* Link Rengi */
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

/* Link Üzerine Gelindiğinde */
.left-menu nav ul li a:hover {
    /* background-color: rgba(16, 16, 16, 0.2); */
    color: rgba(25, 225, 250);
}
