:root {
    --border-gray-color: #ebebf2;
    --admin-primary-color: #405FD3;
    --admin-tertiary-color: #d63838;
}

body {
    margin-top: 0px;
    font-family: 'Pretendard Variable';
    background-color: #f5f6fb;
}

.login-btn {
    cursor: pointer;
    border: none;
    padding: 10px;
    border-radius: 10px;
    font-size: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.primary-btn {
    flex: 1;
    position: relative;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
    padding: 12px 10px;
    background-color: #006EE6;
    color: #FFFFFF;
    border-radius: 7px;
    font-weight: 500;
    border: none;
    font-size: 17px;
    max-height: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.primary-btn.disabled {
    cursor: default;
    background-color: #E5E5E5;
    color: #737278;
}

.primary-btn.disabled:hover {
    background-color: #E5E5E5;
}

.primary-btn:hover {
    background-color: #0255ae;
}

/* Loading Spinner */
.loading-wrap {
    position: absolute;
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.lds-ring {
    position: absolute;
    /* change color here */
    color: #a7abb1;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lds-ring,
.lds-ring div {
    box-sizing: border-box;
}

.lds-ring {
    display: inline-block;
    width: 40px;
    height: 40px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 35px;
    height: 35px;
    margin: 8px;
    border: 3px solid currentColor;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: currentColor transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 전체 스크롤바 */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* 스크롤바의 트랙 (스크롤바가 움직이는 영역) */
::-webkit-scrollbar-track {
    margin-left: 5px;
    background: #ffffff;
    /* 트랙 배경색 */
    border-radius: 10px;
    /* 트랙 모서리 둥글게 */
}

/* 스크롤바의 엄지 (움직이는 부분) */
::-webkit-scrollbar-thumb {
    background: #c4c6c9;
    /* 엄지 배경색 */
    border-radius: 10px;
    /* 엄지 모서리 둥글게 */
}


/* 스크롤바 모서리 (스크롤바 두 개가 만나는 모서리) */
::-webkit-scrollbar-corner {
    background: #5b5858;
}

.page-wrap {
    padding: 20px;
    box-sizing: border-box;
    background-color: #FFFFFF;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 43%;
    min-width: 500px;
    min-height: 100%;
}

.page-wrap .error-wrap {
    width: 80%;
    text-align: start;
    display: flex;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 20px;
}

.page-wrap .error-wrap .link {
    margin-top: 15px;
    font-size: 18px;
    color: #86858d;
    line-height: 35px;
}

.page-wrap .error-wrap .logo-wrap img {
    width: 230px;
}

.popup-wrap {
    box-sizing: border-box;
    border-radius: 20px;
    padding: 20px;
    width: 400px;
    height: 300px;
    position: fixed;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFFFFF;
    z-index: 10;
    flex-direction: column;
    box-shadow: 0px 0px 50px 10px #a5a5a550;
}

.popup-head {
    border-bottom: 1px solid #d3d3e6;
    padding-bottom: 10px;
}

.popup-wrap .close-btn {
    cursor: pointer;
    top: 23px;
    right: 20px;
    position: absolute;
    width: 18px;
    height: 18px;
}

.popup-title {
    font-size: 18px;
    font-weight: 600;
}

.popup-overlay {
    display: none;
    content: '';
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0px;
    right: 0px;
    background-color: #00000050;
    z-index: 5;
}

.order-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.delivery-ul {
    min-height: 85vh;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0px;
}

.delivery-li {
    padding: 15px 0px;
    border-top: 1px solid #d3d3e6;
}

.unsupported-order-wrap {
    margin-top: 10px;
    padding: 15px 0px;
    border-top: 1px solid #d3d3e6;
}

.delivery-num {
    padding: 0px 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.delivery-status-wrap {
    gap: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    white-space: nowrap;
}

.delivery-status {
    padding: 4px 10px;
    border-radius: 16px;
    box-shadow: 0 0px 2px 0 rgba(0, 0, 0, .05);
    font-size: 15px;
    font-weight: 500;
}

.delivery-status-code-10,
.delivery-status-code-18,
.delivery-status-code-20,
.delivery-status-code-30,
.delivery-status-code-100,
.delivery-status-code-200,
.delivery-status-code-300,
.delivery-status-code-400,
.delivery-status-code-500,
.delivery-status-code-550 {
    background: #dcedfb;
    color: #004f95;
}

.delivery-status-code-700 {
    background: #cdffe0;
    color: #00592e;
}

.delivery-detail-btn {
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    border: none;
    background-color: #0871e2;
    border-radius: 5px;
    padding: 4px 6px;
    transition: background-color 0.2s ease-in-out;
}

.delivery-detail-btn:hover {
    background-color: #5e9fe6;
}

.product-list {
    margin-top: 10px;
}

table,
th,
td {
    border: 1px solid rgb(208, 212, 229);
    border-collapse: collapse;
}

a {
    color: #000;
    text-decoration: none;
}

table {
    width: 100%;
}

th {
    padding: 10px;
    text-align: left;
}

td {
    padding: 10px;
}

h2 {
    margin-top: 0px !important;
    margin-bottom: 5px;
}

h3 {
    margin-top: 15px !important;
    line-height: 0px;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.undelivery-product-wrap {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.stock-status-wrap {
    white-space: nowrap;
    padding-left: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
}

.stock-status {
    margin-right: 10px;
    padding: 4px 10px;
    border-radius: 16px;
    box-shadow: 0 0px 2px 0 rgba(0, 0, 0, .05);
    font-size: 14px;
    color: #764400;
    background-color: #fffedc;
    font-weight: 500;
}

.stock-status,
.canceled_product,
.returned_product {
    background: #ffebeb;
    color: #a50000;
}

.stock-in-due-date {
    margin-top: 5px;
    font-size: 13px;
    color: #62666f;
}

.in_stock {
    background: #fffedc;
    color: #764400;
}

.sold_out {
    background: #ffebeb;
    color: #a50000;
}

.wait_stock {
    background: #fffedc;
    color: #764400;
}

.product-wrap {
    cursor: pointer;
    padding: 0px 10px;
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.product-wrap .name {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}


.product-wrap img {
    width: 90px;
    height: 90px;
    min-width: 90px;
    object-fit: cover;
    border-radius: 10px;
}

.product-info-wrap {
    display: flex;
    flex-direction: column;
}

.product-info-wrap .option {
    font-size: 13px;
    color: #62666f;
}


.product-info-wrap .option div {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.tracking-list-wrap {
    padding: 15px 10px 0px 0px;
    box-sizing: border-box;
    width: 100%;
    overflow-y: scroll;
}

.delivery-num-wrap {
    margin-top: 10px;
}

.tracking-ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tracking-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.tracking-date {
    font-weight: 400;
    color: #5c5c60;
}

.tracking-status {
    font-weight: 400;
}

.order-num-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.order-num-confirm-guide {
    color: #444347;
}

.order-num-input-wrap {
    white-space: wrap;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    width: 70%;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.order-num-input-wrap input {
    box-sizing: border-box;
    border: none;
    background-color: #e5e6e9;
    padding: 10px;
    outline: none;
    border-radius: 7px;
    font-size: 15px;
    min-width: 250px;
}


.order-num-input {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.order-num-input button {
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
    padding: 8px 10px;
    background-color: #006EE6;
    color: #FFFFFF;
    border-radius: 7px;
    font-weight: 500;
    border: none;
    font-size: 15px;
}

.order-num-input button:hover {
    background-color: #0255ae;
}

.partial-delivery-btn-wrap {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    bottom: 10px;
    left: 0px;
    padding: 5px 15px;
    gap: 10px;
}

.partial-delivery-btn-wrap button {
    flex: 1;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
    padding: 12px 10px;
    background-color: #006EE6;
    color: #FFFFFF;
    border-radius: 7px;
    font-weight: 500;
    border: none;
    font-size: 17px;
}


.partial-delivery-btn-wrap button:hover {
    background-color: #0255ae;
}

.partial-delivery-btn-wrap .disabled {
    cursor: default;
    background-color: #E5E5E5;
    color: #737278;
}

.partial-delivery-btn-wrap .disabled:hover {
    cursor: default;
    background-color: #E5E5E5;
    color: #737278;
}

.guide {
    text-align: left;
    color: #444347;
}

.inquery-guide-wrap {
    margin-top: 15px;
    padding: 0px 15px;
    font-size: 15px;
}

.inquery-guide-wrap .product-name {
    vertical-align: middle;
}

.inquery-form {
    font-size: 15px;
    margin-top: 25px;
    padding: 0px 15px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.inquery-form label,
legend {
    font-weight: 600;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.inquery-form .input-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.inquery-form .input-wrap .radio-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #f3f3f9 inset !important;
    /* 배경 흰색으로 덮기 */
    -webkit-text-fill-color: #000 !important;
    /* 글자색 지정 */
}

.inquery-form .input-wrap input,
.inquery-form .input-wrap textarea {
    padding: 12px 10px;
    border: 1px solid #ebebf2;
    background-color: #f3f3f9;
    border-radius: 7px;
    resize: none;
}


.inquery-form .input-wrap input:focus,
.inquery-form .input-wrap textarea:focus {
    background-color: #f3f3f9;
}

.file-upload-wrap {}

.file-upload-btn-wrap {
    position: relative;
}

.file-upload-wrap input {
    cursor: pointer;
    width: 100%;
    margin-top: 13px;
    opacity: 0;
    z-index: 10;
    height: 40px;
}

.file-upload-wrap .file-upload-btn {
    cursor: pointer;
    position: absolute;
    top: 10px;
    width: 100%;
    padding: 12px 10px;
    box-sizing: border-box;
    border: 1px solid #ebebf2;
    background-color: #f3f3f9;
    border-radius: 7px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #68686f
}

.privacy-policy-wrap {
    padding: 0px 15px;
    box-sizing: border-box;
    border: 1px solid #ebebf2;
    border-radius: 7px;
    white-space: pre-wrap;
    font-size: 14px;
    max-height: 200px;
    overflow-y: scroll;
}

.privacy-policy-checkbox-wrap {
    display: flex;
    gap: 5px;
}


.image-preview-container {
    margin-top: 20px;
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.image-preview-container .image-preview {
    object-fit: cover;
    width: 130px;
    height: 130px;
    border-radius: 7px;
    border: 1px solid #ebebf2;
}

fieldset {
    padding-top: 0px;
    padding-left: 0px;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}


fieldset label {
    font-size: 13px;
    margin-left: 5px;
    font-weight: 400 !important;
}


.inquery-form .input-wrap .required {
    margin-left: 5px;
    padding: 4px;
    font-size: 11px;
    line-height: 13px;
    background-color: rgb(225, 42, 42);
    color: white;
    font-weight: 500;
    border-radius: 5px;
}

.inquery-guide-wrap .product-info {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
}

.product-info .product-name {
    font-size: 19px;
    font-weight: 600;
}

.product-info .product-img {
    object-fit: cover;
    width: 170px;
    height: 170px;
    border-radius: 10px;
}

.inquery-guide-wrap .close-btn {
    cursor: pointer;
    width: 23px;
    height: 23px;
    position: absolute;
    top: 25px;
    right: 20px;
}

.loader {
    display: none;
    width: 30px;
    height: 30px;
    border: 4px solid #FFFFFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotation 0.9s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



@media screen and (max-width: 480px) {
    .page-wrap {
        padding: 20px 10px;
        width: 100% !important;
        min-width: auto;
    }


    .order-num-wrap {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .popup-wrap {
        width: 90vw;
        height: 300px;
    }


    .stock-status-wrap {
        position: absolute;
        bottom: 10px;
        right: 0px;
    }

    .undelivery-product-wrap {
        border-bottom: 1px solid #ebebf2;
        padding-bottom: 10px;
    }

    .undelivery-product-wrap:last-child {
        border-bottom: none;
        padding-bottom: 10px;
    }

    .delivery-product a {
        border-bottom: 1px solid #ebebf2;
        padding-bottom: 10px;
    }

    .delivery-product a:last-of-type {
        border-bottom: none;
        padding-bottom: 10;
    }

}

/* Admin */
.admin-login-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    flex-direction: column;
    left: 50%;
    top: 50%;
    background-color: #FFFFFF;
    padding: 50px 70px;
    border-radius: 10px;
    transform: translate(-50%, -50%);
    border: 1px solid var(--border-gray-color);

    .logo {
        width: 140px;
    }

    #login-btn {
        margin-top: 30px;
        max-width: 240px;
    }
}

.admin-page-wrap {
    padding-left: 250px;
    padding-right: 20px;
    padding-top: 100px;
    background-color: #FFFFFF;
    
    h3 {
        font-weight: 500;
        font-size: 19px;
    }

    .table-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid var(--border-gray-color);
        padding-bottom: 15px;



        .btn-list {
            display: flex;
            gap: 5px;
            align-items: center;
        }

        button {
            max-width: fit-content;
            max-height: fit-content;
            padding: 7px 10px;
            font-size: 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            color: #ffffff;
        }

        .primary-btn {
            background-color: var(--admin-primary-color);
        }

        .tertiary-btn {
            background-color: var(--admin-tertiary-color);
        }


    }

    .table-scroll-wrap {
        margin-top: 20px;
        overflow: auto;
        max-height: calc(100vh - 260px);
        border: 1px solid var(--border-gray-color);
        border-radius: 8px;
    }

    .table-scroll-wrap table {
        margin-top: 0;
        border: none;
        border-collapse: collapse;
    }

    .table-scroll-wrap th,
    .table-scroll-wrap td {
        border: none;
    }

    .table-scroll-wrap tr {
        border-bottom: 1px solid var(--border-gray-color);
        font-size: 15px;
        cursor: pointer;
    }

    .table-scroll-wrap thead {
        border-bottom: 1px solid var(--border-gray-color);
    }

    .table-scroll-wrap thead th {
        position: sticky;
        top: 0;
        z-index: 1;
        background-color: #F9FAFC;
        box-shadow: 0 1px 0 var(--border-gray-color);
    }

    .table-scroll-wrap th {
        text-align: center;
        font-size: 15px;
        font-weight: 500;
        color: rgb(103, 103, 118);
        background-color: #F9FAFC;
    }

    .table-scroll-wrap td {
        text-align: center;
    }

    td {
            text-align: center;
        }

        .product-name-td {
            display: flex;
            align-items: center;
            padding-left: 15px;
            gap: 25px;

            img {
                width : 70px;
                height: 70px;
                border-radius: 10px; 

                object-fit: cover;
            }
        }
    }

    .pagination-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2px;
        margin-top: 24px;
        padding: 16px 0;
        flex-wrap: wrap;
    }

    .pagination-wrap.pagination-fixed {
        position: fixed;
        bottom: 24px;
        left: 250px;
        justify-content: flex-start;
        margin-top: 0;
        padding: 12px 16px;
        background: #fff;
        border-radius: 8px;
        z-index: 10;
    }

    .pagination-wrap .pagination-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 30px;
        height: 30px;
        border: 1px solid var(--border-gray-color);
        border-radius: 5px;
        background-color: #fff;
        color: #374151;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        cursor: pointer;
        transition: background-color 0.15s, border-color 0.15s;

        img {
            width: 20px;
            height: 20px;
        }
    }
    .pagination-last, .pagination-first {
        border: none;
        background-color: none;
    }

    .pagination-wrap .pagination-btn:hover {
        background-color: #F3F4F6;
        border-color: #D1D5DB;
    }

    .pagination-wrap .pagination-btn-disabled {
        background-color: #F3F4F6;
        border-color: #E5E7EB;
        color: #9CA3AF;
        cursor: not-allowed;
        pointer-events: none;
        opacity: 0.7;
    }

    .pagination-wrap .pagination-btn-disabled img {
        opacity: 0.6;
    }

    .pagination-wrap .pagination-current {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 30px;
        height: 30px;
        border: 1px solid var(--admin-primary-color);
        border-radius: 5px;
        background-color: var(--admin-primary-color);
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        cursor: default;
        pointer-events: none;
    }


.modal-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-out;
    z-index: 999;
}

.modal-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
}

.modal-wrap {
    background-color: #FFFFFF;
    border-radius: 12px;
    min-width: 350px;
    max-width: 500px;
    min-height: 300px;
    padding: 24px 30px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.25);
    transform: translateY(10px) scale(0.97);
    opacity: 0;
    transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}

#makeshop-login-modal {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-backdrop.visible .modal-wrap {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
}

.modal-content p {
    font-size: 14px;
    color: #4B5563;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.modal-close-btn {
    border: none;
    background: transparent;
    padding: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    background-color: rgba(0, 0, 0, 0.06);
    border-radius: 6px;
}

.modal-close-btn img {
    width: 18px;
    height: 18px;
}

.modal-body {
    margin-top: 4px;
}

.modal-product-info {
    display: flex;
    flex-direction: row;
    gap: 35px;
}

.modal-product-image {
    display: flex;
    justify-content: center;
}

.modal-product-image img {
    width: 250px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--border-gray-color);
}

.modal-product-fields {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.field-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    font-size: 14px;
}

.field-label {
    width: 70px;
    color: #6B7280;
    font-weight: 500;
}

.field-value {
    font-size: 16px;
    color: #111827;
}

.order-input {
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid var(--border-gray-color);
    font-size: 16px;
}

.modal-footer {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.modal-btn {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.modal-btn-secondary {
    background-color: #E5E7EB;
    color: #374151;
}

.modal-btn-secondary:hover {
    background-color: #D1D5DB;
}

.modal-btn-primary {
    background-color: #006EE6;
    color: #FFFFFF;
}

.modal-btn-primary:hover {
    background-color: #0255ae;
}

.modal-btn-danger {
    background-color: #EF4444;
    color: #FFFFFF;
}

.modal-btn-danger:hover {
    background-color: #DC2626;
}

.admin-header {

    h2 {
        color: #272D39;
        font-weight: 600;
        font-size: 22px;
        margin-bottom: 0px;
    }


    width: 100%;
    height: 65px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    align-items: center;
    top: 0;
    left: 0;
    padding: 5px 20px 5px 250px;
    box-sizing: border-box;
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--border-gray-color);

    .logout-btn {
        cursor: pointer;
        background: none;
        border: none;
        padding: 5px;
    }
}


.menu-bar {
    padding: 15px 10px;
    box-sizing: border-box;
    z-index: 100;
    background-color: #F9FAFC;
    width: 230px;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    border-right: 1px solid var(--border-gray-color);
    font-family: "DM Sans";

    .menu-list-wrap {
        margin-top: 30px;
        text-decoration: none;
        list-style: none;
        padding: 10px;


        .menu-group-label {
            color: #9fa1b3;
            font-weight: 500;
            font-size: 12px;
        }

        .menu-group-label {
            margin-top: 0px;
            margin-bottom: 10px;
        }



        a {
            display: flex;
            align-items: center;
            gap: 8px;
            img {
                width: 18px;
            }
            padding: 8px;
            border-radius: 7px;

            font-size: 15px;
            color: #363A43;
            font-weight: 600;

            &:hover {
                background-color: #E8EEFA;
            }

            &.selected {

                img {
                    filter: invert(13%) sepia(99%) saturate(3313%) hue-rotate(231deg) brightness(92%) contrast(92%);
                }

                color: #1d38b1;
                background-color: #E8EEFA;
            }
        }
    }


    .logo {
        width: 140px;
    }
}
