/* Add here all your CSS customizations */

/* FIXES 2025 */

/* @media only screen and (min-width: 1200px)  */
html.boxed body {
    background: url(../img/patterns/gray_jean.png) repeat;
    padding-bottom: 0;
}
html.dark, html.dark  body {
    /* background: url(../img/patterns/gray_jean.png) repeat; */
    padding-bottom: 0;
    background-color:  var(--body-bg-color); !important;
    background-image: none !important;
}

body{
    font-family: "Open Sans", "Roboto", "Poppins", Arial, sans-serif;
    line-height: 22px;
    font-size: 13px;
}



/* normal text for light and dark mode use VARS.CSS */
/*html.dark .text_normal{
    color: var(--f3-text-color-dark);
}*/
.text_normal{
    color: var(--f3-text-color);
}



html.dark .form-control {
    color: var(--f3-text-form-control-dark);
}


html.dark ::placeholder {
    color: var(--f3-text-placeholder-dark);
    opacity: 1; /* Firefox */
  }
  
html.dark ::-ms-input-placeholder { /* Edge 12 -18 */
    color: var(--f3-text-placeholder-dark);
  }




hr {
    opacity: 1 !important;
}




.form-group + .form-group {
  border-top: 0px solid #f3f3f3;
  padding-top: 16px;
  padding-top: 1rem;
}




.theme-toggler {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: var(--f3-text-color, #222);
    vertical-align: middle;
}

/* Optional: Smooth transition */
body {
    transition: background-color 0.3s, color 0.3s;
}



/* Apply to Tables */
.table tbody {
  border-top: 2px solid var(--table-border-color);
}




/* hamburger menu */
@media (max-width: 991px) {
    .header-btn-collapse-nav {
        background: #0088CC;
        color: #ffffff;
    }

    .header-btn-collapse-nav:hover {
        background: #0088CC; /* Prevent background color change on hover */
        color: #ffffff;       /* Optional: prevent text color change */
    }
}



@media (max-width: 991px) {
  .header.header-nav-menu .header-nav-main nav > ul li.dropdown .dropdown-menu li a {
    color: var(--f3-text-color);
    background-color: var(--bg-color-link);
  }

  .header.header-nav-menu .header-nav-main nav > ul li.dropdown .dropdown-menu li a:hover {
    color: var(--f3-text-color-hover, #ffffff); /* Fallback color if variable isn't defined */
    background-color: var(--bg-color-link-hover, #007bff); /* Fallback to Bootstrap blue */
  }
}




/* END FIXES  */






.details-row td {
    background-color: var(--table-td-details-bg); !important; /* Light yellow */
    font-style: italic;
    font-size: 12px;
}






.content-body{
    width: 100% !important;
}

div.inner-wrapper{
    min-height: 60vh !important;
}


/* borders */
.bred{
    border: 1px solid #8c130a;
}
.bgreen{
    border: 1px solid #117a07;
}

/* MODAL CONFIRM POP-up */

.text-confirm{
    font-size: 0.85rem;
}

.modal-icon {
    float: left;
    width: 20% !important;
    text-align: center;
    margin-right: 0.5rem;
}
.modal-icon + .modal-text {
    float: left;
    width: 80%;
  }



.bg-red{
    background-color: #cc0086 !important;
}
.f40px{
    font-size: 40px !important;
}


.header.header-nav-menu .logo:after {
    content: unset !important;
    display: block;
    position: absolute;
    top: -13px;
    right: 0;
    height: 60px;
    border-right: 1px solid #E9E9E6;
}


.page-header h2 {
    border-bottom-color: #ccc;
}



.widget-summary .summary {
    word-break: break-word;
}
.widget-summary.widget-summary-xs .summary .title {
    line-height: 1.4;
}

.widget-summary .widget-summary-col{
    vertical-align: middle;
}







/* HIGHCHARTS */

.highcharts-figure, .highcharts-data-table table {
    min-width: 310px; 
    max-width: 800px;
    margin: 1em auto;
}

.highcharts-data-table table {
    font-family: Verdana, sans-serif;
    border-collapse: collapse;
    border: 1px solid #EBEBEB;
    margin: 10px auto;
    text-align: center;
    width: 100%;
    max-width: 500px;
}
.highcharts-data-table caption {
    padding: 1em 0;
    font-size: 1.2em;
    color: #555;
}
.highcharts-data-table th {
    font-weight: 600;
    padding: 0.5em;
}
.highcharts-data-table td, .highcharts-data-table th, .highcharts-data-table caption {
    padding: 0.5em;
}
.highcharts-data-table thead tr, .highcharts-data-table tr:nth-child(even) {
    background: #f8f8f8;
}
.highcharts-data-table tr:hover {
    background: #f1f7ff;
}



/* MAPS  */
#container {
    height: 500px; 
    min-width: 600px; 
    max-width: 800px; 
    margin: 0 auto; 
}
.loading {
    margin-top: 10em;
    text-align: center;
    color: gray;
}





/* CSS SPINNER / LOADER */


.spinner {
  margin: 10px auto 0;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #005984;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}





/*login */
.body-sign .card-sign .card-body {
  border-radius: 5px ;
}



/* @media only screen and (min-width: 1200px)  */
/* html.boxed body {
    background: url(../img/patterns/gray_jean.png) repeat;
    padding-bottom: 0;
} */



/* DIFFERENT LAYOUT add-ons */

.mr-5{
    margin-right: 1rem !important;
}

.text-bl {
    color: #0059b2;
}

.text-dark-grey {
  /* color: #494b54 !important; */
  color: #636572 !important;
}


.text-red {
    color: #8c130a;
}

.text-green {
    color: #117a07;
}


.btn-xs2 {
    padding: 0.05rem 0.5rem !important;
    margin: 0.1rem !important;
    font-size: 0.7rem !important;
}



/* new slot page  */
span.new_slot_expired{
    display: none;
}



.switch-small input[type="checkbox"] {
    transform: scale(0.50); 
    transform-origin: left center;
}



