﻿.sh-dashboard-aside {
    width: 300px;
    max-height: 100vh;
    flex-shrink: 0;
    display: block;
}

.sh-dashboard-inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 0;
    right: 0;
    width: 290px;
    height: 100vh;
    position: fixed;
    overflow-y: auto;
    background-color: #fff;
    row-gap: 25px;
}

.sh-dashboard-logo-box {
    width: 170px;
    padding-top: 20px;
    position: relative;
}

.sh-dashboard-logo-box img {
    width: 100%;
    object-fit: cover;
}

.sh-dashboard-list {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    width: 100%;
    padding-inline: 20px;
}

.sh-dashboard-item-list-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 18px;
    padding-right: 10px;
    padding-block: 8px;
    border-radius: 7px;
    transition: 0.15s all;
    border: 1px solid #fff;
    text-decoration: none;
    user-select: none;
}

.sh-dahsboard-item-icon-box {
    width: 35px;
}

.sh-dahsboard-item-icon-box img {
    width: 100%;
    object-fit: cover;
}

.sh-dashboard-item-title {
    font-size: 1rem;
    color: #3b3737;
    font-family: "NotoSansArabic-Regular";
}

.sh-dashboard-item-list-container:hover {
    background-color: #E6F7FF;

}

.sh-dashboard-item-list-container:focus-within {
    background-color: #B3E5FC;
    border: 1px solid #66CCFF
}
