body {
    font-family: "Kalameh";
    background: #f5f7fb;
}

/* sidebar */
.sidebar {
    width: 80px;
    background: #111827;
    transition: all 0.25s;
    position: fixed;
    height: 100%;
    z-index: 1000;
}

.sidebar:hover {
    width: 240px;
}

.sidebar-menu {
    padding: 20px 0;
}

.sidebar-item {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: #9ca3af;
    text-decoration: none;
    transition: 0.2s;
}

.sidebar-item:hover {
    background: #1f2937;
    color: #fff;
}

.sidebar-icon {
    font-size: 20px;
    width: 40px;
    text-align: center;
}

.sidebar-text {
    opacity: 0;
    transition: 0.2s;
    white-space: nowrap;
}

.sidebar:hover .sidebar-text {
    opacity: 1;
}

/* content */
.content {
    margin-right: 80px;
    flex: 1;
    transition: 0.25s;
}

@media (min-width: 992px) {
    .sidebar:hover ~ .content {
        margin-right: 240px;
    }
}

/* header */
.admin-header {
    background: white;
    padding: 15px 25px;
    border-bottom: 1px solid #eee;
}

.page-body {
    padding: 15px;
}
/* mobile */

@media (max-width: 992px) {
    .sidebar {
        transform: translateX(100%);
        width: 260px;
    }

    .sidebar.mobile-show {
        transform: translateX(0);
    }

    .sidebar:hover {
        width: 260px;
    }

    .sidebar-text {
        opacity: 1;
    }

    .content {
        margin-right: 0;
    }
}
.sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    z-index: 900;
}

.sidebar-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.modal-header .btn-close {
    margin-left: 0px !important;
}

@media (max-width: 768px) {
    .page-body {
        padding: 15px;
    }

    h4 {
        font-size: 18px;
    }

    .btn {
        font-size: 14px;
        padding: 6px 12px;
    }
}

.project-switch-btn{
    min-width:260px;
    justify-content:flex-start;
}

.project-dropdown{
    min-width:260px;
    padding:6px;
    border-radius:10px;
}

.project-item{
    border-radius:8px;
    padding:8px 10px;
    transition:all .15s ease;
}

.project-item:hover{
    background:#f5f6f8;
}

.project-item img{
    width:24px;
    height:24px;
    object-fit:cover;
}

.selection{
    border: 2px solid #d6e8f9;
}