.bg-white {
    background: #FFFFFF;
}

.white-box {
    background: #fff;
    box-shadow: 0px 4px 30px #0000000F;
    border: 1px solid #FFFFFF;
    border-radius: 20px;
}

.line-white-box {
    background: #FFFFFF;
    border: 1px solid var(--bg-slate-light);
    border-radius: 15px;
}

.gray-line-white-box {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: 15px;
}

.yellow-box {
    background: #FFFBEF;
    border-radius: 20px;
}

.gray-box {
    background: var(--bg-slate-light);
    border-radius: 15px;
}

.nav-active {
    background: var(--main-green);
    box-shadow: 0px 8px 20px var(--main-green)73;
    border-radius: 12px;
}

.nav-active span {
    color: #FFFFFF !important;
}

.search-icon {
    position: absolute;
    left: 15px;
}

.search-input {
    width: 300px;
    height: 6vh;
    padding-left: 55px;
    border-radius: 14px;
    box-shadow: 0px 4px 30px #0000000F;
    border: none;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 8a.99.99 0 0 1-.7-.3L.29 2.69C-.31 2.09.11 1 1 1h10c.89 0 1.31 1.09.71 1.69L6.7 7.7A.99.99 0 0 1 6 8Z' fill='%23192539'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px 8px;
    padding-right: 46px;
    cursor: pointer;
}

.custom::-ms-expand {
    display: none;
}

.border-radius-12 {
    border-radius: 12px;
}

.border-radius-20 {
    border-radius: 20px;
}

.border-radius-26 {
    border-radius: 26px;
}

.border-radius-none {
    border-radius: 0px !important;
}

.border-radius-sm {
    border-radius: 20px;
}

.border-radius-top-sm {
    border-radius: 20px 20px 0px 0px;
}

.border-radius-bottom-sm {
    border-radius: 0px 0px 20px 20px;
}

.warning-badge {
    background: #FFF3DB;
    border-radius: 21px;
    color: #F28920;
}

.success-badge {
    background: var(--bg-green-light);
    border-radius: 21px;
    color: var(--main-green);
}

.line-green-badge {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 4px 15px #0000002E;
    border-radius: 21px;
    color: var(--main-green);
}

.gray-badge {
    background: var(--bg-slate-light) 0% 0% no-repeat padding-box;
    border-radius: 21px;
    color: var(--text-dark);
}

.glass-badge {
    background: #FFFFFF4D 0% 0% no-repeat padding-box;
    border-radius: 21px;
    color: #FFFFFF;
}

.border-box {
    border: 1px solid var(--border-light) !important;
}

.border-bottom {
    border-bottom: 1px solid var(--border-light) !important;
}

.border-left {
    border-left: 1px solid var(--border-light) !important;
}

.card-item:hover {
    cursor: pointer;
    transform: translateY(-6px);
    transition: transform 0.3s ease;
}