/*
    1. Remove Body Scroll
    2. Sidebar

*/

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #a5a5a5;
}

a{
    text-decoration: none !important;
}

/* 1. Remove Body Scroll  */

::-webkit-scrollbar {  /* Hide scrollbar for Chrome, Safari, and Opera */
    display: none;
}

body::-webkit-scrollbar { /* Hide scrollbar for Edge */
    display: none;
}

html { /* Hide scrollbar for Firefox */
    scrollbar-width: none;
}


/* Basic Styles */

.form-control {
    display: block;
    width: 100%;
    height: calc(15px + 20px + 2px);
    padding: 3px 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #3f4254;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #e4e6ef;
    border-radius: 0.42rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.form-control-disabled {
    display: block;
    width: 100%;
    height: calc(15px + 20px + 2px);
    padding: 3px 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #3f4254;
    background-color: #ffc107;
    background-clip: padding-box;
    border: 1px solid #ffc107;
    border-radius: 0.42rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.form-control-text-disabled {
    display: block;
    width: 100%;
    height: calc(15px + 20px + 2px);
    padding: 3px 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #3f4254;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #e4e6ef;
    border-radius: 0.42rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.form-control:active , .form-control:focus , .form-control:focus-visible{
    box-shadow: none;
    outline: none;
    border: 1px solid #656565;
}

.form-control-text-disabled:active , .form-control-text-disabled:focus , .form-control-text-disabled:focus-visible{
    box-shadow: none;
    outline: none;
    border: 1px solid #e4e6ef;
}

.font-weight-600{
    font-weight: 600;
}

.font-bold{
    font-weight: bold;
}

.select2-container {
    width: 100% !important;
}

.select2-container .select2-selection {
    border: 1px solid #ced4da;
    border-radius: 0.42rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    color: #91989e;
    position: relative;
    line-height: 1.5;
    font-size: 14px;
    height: calc(15px + 20px + 2px) !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #6c757d !important;
    padding: 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #757575;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 3px 1rem !important;
}

textarea.form-control {
    height: calc(15px + 20px + 2px) !important;
}

/* Custom radio button */

.radio-container {
    display: flex;
    gap: 20px;
    background-color: #fff;
    padding: 18px 1rem;
    height: calc(15px + 20px + 2px);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .custom-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    color: #333;
  }

  .custom-radio input {
    display: none;
  }

  .custom-radio .radio-label {
    display: inline-flex;
    align-items: center;
    padding-left: 25px;
    position: relative;
    transition: color 0.3s ease;
  }

  .custom-radio .radio-label:before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #656366;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    transition: background-color 0.3s ease, border-color 0.3s ease;
  }

  .custom-radio input:checked + .radio-label:before {
    background-color: #656366;
    border-color: #656366;
  }

  .custom-radio input:checked + .radio-label:after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }

  .custom-radio .radio-label:hover:before {
    border-color: #656565;
  }

  .custom-radio input:checked + .radio-label {
    color: #656565;
  }

  .custom-radio .radio-label:hover {
    color: #656565;
  }

  /* End Custom radio button */

/*********************************************************** Sidebar Start ***********************************************************/

/*** Layout ***/
.sidebar {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 250px;
    height: 100%;
    overflow-y: auto;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    background: #656565;
    transition: 0.5s;
    z-index: 999;
}

#hover-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 5px;
    height: 100vh;
    background-color: transparent;
    display: none;
}

@media (min-width: 992px) {
    .sidebar {
        margin-left: 0;
    }

    .sidebar.open {
        margin-left: -255px;
    }

    .main-content {
        width: calc(100% - 250px);
    }

    .main-content.open {
        width: 100%;
        margin-left: 0;
    }

    .footer.open {
        margin-left: -255px;
    }

    .fixed-top.open {
        margin-left: -255px;
    }

    .search-accordion-md-div{
        display: none !important;
    }

    .only-sm{
        display: none !important;
    }
    
}

.sidebar .logo-background {
    width: 250px !important;
    height: 105px;
    background: #525252;
    position: fixed;
    z-index: 999;
}
.sidebar .logo-div-frame {
    height: 80px;
    position: absolute;
    top: 16px;
    left: 16px;
    width: 226px;
    z-index: 99999;
    border-radius: 11px;
    box-shadow: inset 41px 41px 82px #000000, inset -105px -65px 82px #1e6193;
}

.sidebar .logo-background .logo-outer-div {
    box-shadow: 1px 3px 3px 0px rgb(0 0 0) !important;
}

.sidebar .logo-background .logo-div {
    height: 80px;
    position: relative;
    top: 0px;
    left: 0px;
    width: 226px;
    z-index: 99999;
    border-radius: 11px;
    box-shadow: inset 41px 41px 82px #ffffff, inset -105px -65px 82px #ffffff;
}

.sidebar .logo-background .logo-div .logo-img {
    width: 180px;
    padding-bottom: 5px;
    padding-top: 2px;
}

.sidebar .menu-content-div {
    margin-top: 100px !important;
    margin-bottom: 70px !important;
}

.sidebar .menu-content-div .menu-shadow {
    box-shadow: 4px 3px 3px 0px rgb(0 0 0);
    border-radius: 20px;
    transition: all 0s;
}

.sidebar .menu-content-div .menu-shadow .menu-block {
    border-radius: 10px;
    background: #ffffff;
    cursor: pointer;
    height: 105px;
    transition: all 0.8s;
}

/* Hover effect for .menu-shadow */
.sidebar .menu-content-div .menu-shadow:hover {
    border-radius: 20px;
}

/* Hover effect for .menu-block when .menu-shadow is hovered */
.sidebar .menu-content-div .menu-shadow:hover .menu-block {
    box-shadow: inset 41px 41px 82px #ffffff, inset -41px -41px 82px #ff0000;
    border-radius: 20px;
}
.sidebar .menu-content-div .menu-shadow:hover .menu-text {
    color: #000 !important;
}
.sidebar .menu-content-div .menu-shadow:hover .fa {
    color: #ca0f16 !important;
}

.sidebar .menu-content-div .menu-shadow .menu-block .menu-text {
    color: #c70f17;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

.sidebar .menu-content-div .menu-shadow .menu-block .menu-head {
    margin-top: 5px;
}


/* Mobile menu color style */
.menu-content-div{
    background: #656565;
}
.menu-shadow {
    box-shadow: 4px 3px 3px 0px rgb(0 0 0);
    border-radius: 20px;
    transition: all 0s;
}

.menu-shadow .menu-block {
    border-radius: 10px;
    background: #ffffff;
    cursor: pointer;
    height: 105px;
    transition: all 0.8s;
}

/* Hover effect for .menu-shadow */
.menu-shadow:hover {
    border-radius: 20px;
}

/* Hover effect for .menu-block when .menu-shadow is hovered */
.menu-shadow:hover .menu-block {
    box-shadow: inset 41px 41px 82px #ffffff, inset -41px -41px 82px #ff0000;
    border-radius: 20px;
}
.menu-shadow:hover .menu-text {
    color: #000 !important;
}
.menu-shadow:hover .fa {
    color: #ca0f16 !important;
}

.menu-shadow .menu-block .menu-text {
    color: #c70f17;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

.menu-shadow .menu-block .menu-head {
    margin-top: 5px;
}

/* Mobile menu color style End */

.blur-div{
    width: 100% !important; 
    height: 100vh !important; 
    backdrop-filter: blur(3px); 
    z-index: 9; 
    display: none;
}

.fa-logout{
    color: #656565;
}
/* 
.sidebar .fa{
    color: #656366;
    cursor: pointer;
} */

.sidebar .logout-menu{
    position: fixed;
    bottom: 0px;
    height: 60px;
    width: 250px;
    background: linear-gradient(315deg, #656366, #ffffff);
}


/* Active Style */
.fa-menu-icon{
    color: #656366;
}

.menu-active{
    box-shadow: inset 41px 41px 82px #ffffff, inset -41px -41px 82px #ff0000 !important;
    border-radius: 20px !important;
}

.menu-block.menu-active .menu-text {
    color: #000 !important;
}

.menu-block.menu-active + .menu-shadow {
    box-shadow: 4px 3px 3px 0px rgb(0 0 0);
    border-radius: 20px !important;
}

.menu-block.menu-active .fa-menu-icon {
    color: #ca0f16 !important;
}



/********************************************************** Sidebar End **********************************************************/


/********************************************************** Header Start **********************************************************/

.fixed-top {
    position: fixed;
    top: 0px;
    right: 0px;
    left: 250px;
    z-index: 9;
    background: #666c71;
    transition: 0.5s;

}

.fixed-top .toggler-icon{
    width: 30px;
    cursor: pointer;

}

/********************************************************** Header End **********************************************************/




/********************************************************** Content Start **********************************************************/

.main-content {
    margin-left: 250px;
    transition: 0.5s;
    margin-top: 54px;
    margin-bottom: 35px;
}


.action-icons{
    width: 20px;
}

.currency-div{
    border-top: 2px solid #fff;
    margin-top: 15px;
}
/********************************************************** Content End **********************************************************/



/********************************************************** Footer Start **********************************************************/

.footer {
    background-color: #666c71;
    padding: 3px 0;
    position: fixed;
    padding-left: 10px;
    left: 250px;
    bottom: 0px;
    right: 0px;
}

.footer .footer-company-outer{
    width: fit-content;
    background: #fff;
    border-radius: 7px;
    margin-right: 5px;
}

.footer .footer-company-outer .footer-text{
    color: #000000;
    cursor: pointer;
    padding-left: 8px;
    font-size: 12px;
}

.footer .footer-company-outer .footer-company-text a{
    color: #0074ff;
    cursor: pointer;
    text-decoration: none;
    transition: all .5s;
    font-size: 12px;
}

.footer .footer-company-outer .footer-company-text a:hover{
    color: #000000;
    cursor: pointer;
    text-decoration: none;
}

.footer .footer-company-outer .footer-logo{
    width: 45px;
    position: relative;
    top: -3px;
    cursor: pointer;
}

.footer .footer-company-outer .whatsapp-icon{
    width: 25px;
    position: relative;
    cursor: pointer;
}

.footer .footer-company-outer .call-icon{
    width: 25px;
    position: relative;
    cursor: pointer;
    padding: 6px;
}

.footer .footer-company-outer .footer a{
    text-decoration: none;
    transition: all .5s;
}

/********************************************************** Footer End **********************************************************/


/********************************************************** Mobile Menu Start **********************************************************/

/* .mobile-menu{
    position: fixed; 
    bottom: 2px; 
    width: 100%
} */


/********************************************************** Mobile Menu End **********************************************************/


/* Media Query */

@media (max-width: 991px) {
    .sidebar{
        display: none;
    }

    .fixed-top {
        position: fixed;
        top: 0px;
        right: 0px;
        left: 0px !important;
        z-index: 1030;
        background: #fff;
    }

    .footer {
        display: none !important;
    }
    
    .main-content {
        overflow-y: auto;
        width: 100%;
        background: transparent;
        margin-top: 60px;
        margin-bottom: 60px;
        margin-left: 0;
    }

    .search-accordion-lg-div{
        display: none !important;
    }

    .only-lg{
        display: none !important;
    }

}

@media (min-width: 992px) {
    .mobile-menu{
        display: none !important;
    }
    
    .margin-top-2{
        margin-top: 0.5rem !important;
    }
}

/*********************************** Reports *********************************/
.rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.custom-card{
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
    box-shadow: 0px 0px 7px 0px black !important;
    background-color: #cccccc !important;
}

/* .form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
} */

input:focus-visible {
    outline: none;
    border-color: initial; /* Reset border color to initial */
}

.select2-container .select2-selection {
    border: 1px solid #ced4da;
    border-radius: 0.42rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    color: #91989e;
    position: relative;
    /* padding: 0.65rem 3rem 0.65rem 0.5rem; */
    line-height: 1.5;
    font-size: 14px;
    height: auto;
}

.form-control-sm {
    border-radius: 0.42rem !important;
}

.w-max-content {
    width: max-content !important;
}

.modal-content {
    background-color: #cccccc !important;
}

/* Style For Tables */
.currency-table th, td{
    text-align: center;
}

.product-view-table th{
    text-align: center !important;
}



.cke_notification_warning {
    background: #c83939;
    border: 1px solid #902b2b;
    display: none !important;
}


/* Login Page */
.login-col-left{
    background: #fff;
}

.login-col-right{
    background: #949494;
}

.login-col-right .login-form-col{
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0px 0px 20px 7px #4b4b4b;
}

.login-logo-w{
    width: 250px
}

.login-form label{
    font-weight: bold;
    letter-spacing: .5px;
}

.login-form button{
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: .5px;
    height: 45px;
    margin-top: 25px;
}

@media (max-width: 767px) {
    .login-logo-w{
        width: 150px
    }
}

.form-control-login {
    display: block;
    width: 100%;
    height: calc(25px + 20px + 2px);
    padding: 3px 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #3f4254;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #e4e6ef;
    border-radius: 0.42rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    transition: all .5s;
}

.login-password-icon{
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 12px;
}

.form-control-login:active, .form-control-login:focus, .form-control-login:focus-visible {
    border: none;
    outline: none;
    box-shadow: 0px 0px 6px 0px #000;
}

.px-password{
    padding: 3px 40px 3px 1rem !important;
}

@media (min-width: 992px) {
    .login-body{
        overflow: hidden;
    }

    .login-h-100{
        height: 100%;
    }
}





/* Mobile Menu */

.accordionnnn {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000; /* Adjust the z-index as needed */
}

.image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}


.footer_buton_two {
  width: 150px; 
  height: 150px; 
  padding: 0px !important; 
  margin: 10px !important;
  transition: 0.5s;
}

.navv ul li {
  padding: 10px;
}

.navv {
    list-style: none;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  
  .navv li {
    position: relative;
    display: inline-block; 
  }

.navv li:before {
    /* content: ""; */
    display: block;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #fff;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    z-index: -1;
  }

.navv a:link, .navv a:visited {
    display: block;
    text-decoration: none;
    background: #f7f7f7;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#444444), to(#353434));
    background-image: -webkit-linear-gradient(top, #444444, #353434); 
    background-image: -moz-linear-gradient(top, #444444, #353434); 
    background-image: -ms-linear-gradient(top, #444444, #353434); 
    background-image: -o-linear-gradient(top, #444444, #353434); 
    color: #a7a7a7;
    margin: 36px;
    width: 100px;
    height: 100px;
    position: relative;
    text-align: center;
    line-height: 144px;
    border-radius: 50%;
    box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px #fff;
    border: solid 1px transparent;
    background: red;
  }

.navv a:before {
    /* content: ""; */
    display: block;
    background: #fff;
    border-top: 2px solid #ddd;
    position: absolute;
    top: -18px;
    left: -18px;
    bottom: -18px;
    right: -18px;
    z-index: -1;
    border-radius: 50%;
    box-shadow: inset 0px 8px 48px #ddd;
  }
  
  .navv a:active {
    box-shadow: 0px 3px 4px #aaa inset, 0px 2px 3px #fff;
    transform: rotate(25deg) !important;
  }
  
  .navv a:hover {
    text-decoration: none;
    color: #555;
    transform: rotate(25deg) !important;
  }
.section-content {
  display: none;
  padding: 10px;
  transition: 2s;
  max-height: 0;
  overflow: hidden;
}

.section-content.active {
  display: block;
  transition: 2s;
  max-height: 1000px; /* Adjust this value based on your content height */
}

.section-header {
  cursor: pointer;
  transition: 2s;
  height: 55px;
  text-align: center;
  border-radius: 15px 15px 0px 0px;
  background: #656565;
}

.test-image {
  display: inline-block;
}

.arrow-up{
    position: relative; 
    height: 35px;
}

.arrow-down{
    position: relative; 
    transform: rotate(180deg); 
    display: none; 
    height: 35px;
}

.mobile-right-div{
    border-radius: 10px 0px 0px 0px;
    background: #902b2b;
}

.mobile-left-div{
    border-radius: 0px 10px 0px 0px;
    background: #902b2b;
}

.right-icon-align{
    margin-top: 6px;
    width: 40px;
}

.mobile-profile{
    color: #000;
    background: #fff;
    padding: 11px 12px;
    border-radius: 50px;
    cursor: pointer;
}
.menu-logo{
    /* height: 125px !important; */
    width: 216px;
}

.menu-title-mobile{
    display: flex;
    align-items: center;
    flex-grow: 0;
    background: white;
    padding: 5px 13px 6px 1px;
    border-radius: 10px;
}

.submenu-mobile-master{
    z-index: 1 !important;
    background-color: white !important;
    width: 187px !important;
    border-radius: 8px !important;
    transform: translate3d(10px, -4px, 0px) !important;
}   

.submenu-mobile{
    width: 150px !important;
    background-color: white !important;
    border-radius: 8px !important;
    transform: translate3d(10px, -4px, 0px) !important;
}

.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content, .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link{
    padding-left: 0;
}

.arrow-up{
    display: block;
    padding: 0px 25px; 
    height: 35px;
}

.toggle-icon{
    margin-left: 142px;
}

.symbol.symbol-30px > img{
    width: 45px;
    height: 35px;
}

.aside-menu .menu .menu-item .menu-link{
    padding-left: 7px;
}

.arrow-down{
    display: block; 
    transform: rotate(180deg); 
    display: none;
    padding: 0px 25px; 
    height: 35px;
}

.bet-mobile{
    /* width: 40%; */
    height: 45px;
}

.footer-div{
    text-align: center;
}

.fa-back{
    color: #000 !important;
    padding-right: 2px;
}

.view-icon{
    color: #007bff;
}

.btn-close{
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.btn-close:active, .btn-close:focus, .btn-close:focus-visible{
    outline: none;
    box-shadow: none;
    border: none;
}

/* Product Currency Table */
.product-currency-table th{
    background: #fff !important;
    border-bottom: 1px solid #dee2e6 !important;
}
.product-currency-table td{
    background: #b1b1b1 !important;
}



/* Profile */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0; /* Change left to right */
    bottom: 0 !important;
    background-color: #656565;
    overflow-x: hidden;
    /* transition: 0.5s; */
}

.sidenav a {
    padding: 0px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    font-size: 30px;
    color: #fff;
    margin-right: 20px;
    margin-top: 5px;
    font-weight: bold;
    transition: all 1s;
}

.sidenav .closebtn:hover {
    font-size: 30px;
    color: #fff;
    margin-right: 20px;
    font-weight: bold;
    transition: all 1s;
}

.user-card {
    max-width: 300px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.user-card .card-img-top {
    width: 100px; /* Adjust size as needed */
    height: 100px; /* Adjust size as needed */
    border-radius: 50%;
    margin: 20px auto;
    border: 3px solid #ddd; /* Optional: Adds border around the circular image */
}
.user-card .card-body {
    padding-bottom: 20px;
    padding-top: 0px;
}
.user-card .btn-sign-out {
    margin-top: 10px;
}

body.no-scroll {
    overflow: hidden;
}

.full-cover {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 9999;
    display: none;
}

.red-backround-color{
    background: #c00d14 !important;
}

.border-radius-10{
    border-radius: 10px;
}

.btn-sign-out-profile{
    outline: none;
    box-shadow: none;
}

.btn-sign-out-profile:active, .btn-sign-out-profile:focus, .btn-sign-out-profile:focus-visible{
    outline: none;
    box-shadow: none;
}

.confirm-button{
    width: 117px;
}

.background-card-graph{
    background: #e1e1e1 !important;
}