.btn_filters{
    cursor: pointer;
}

.form-control[readonly] {
    background-color: #f7f8fa !important;
    opacity: 1;
}

.datepicker tbody tr > td span.year,
.datepicker tbody tr > td span.hour,
.datepicker tbody tr > td span.minute,
.datepicker tbody tr > td span.month{
    color: #13334c;
}

.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover,
.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover{
    color: #E1E7EB !important;
}

.datepicker thead th.prev,
.datepicker thead th.next{
    font-size: 150% !important;
}

.datepicker thead th.datepicker-switch{
    background: #F9F8F7 !important;
    color: #13334c !important;
}

.datepicker tbody tr > td.day.today,
.datepicker table tr td.today:focus,
.datepicker table tr td.today:hover,
.datepicker table tr td.today:active,
.datepicker table tr td.today.active:hover,
.datepicker table tr td.today:active:focus,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today[disabled]:hover,
fieldset[disabled] .datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled:focus,
.datepicker table tr td.today[disabled]:focus,
fieldset[disabled] .datepicker table tr td.today:focus,
.datepicker table tr td.today.disabled.focus,
.datepicker table tr td.today[disabled].focus,
fieldset[disabled] .datepicker table tr td.today.focus,
.datepicker table tr td.today.focused,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:active,
.datepicker tbody tr > td span.year.focused,
.datepicker tbody tr > td span.year.focused:hover,
.datepicker tbody tr > td span.year.active:hover,
.datepicker tbody tr > td span.year.active.focused:hover,
.datepicker tbody tr > td span.year.active,
.datepicker tbody tr > td span.hour.focused,
.datepicker tbody tr > td span.hour.focused:hover,
.datepicker tbody tr > td span.hour.active:hover,
.datepicker tbody tr > td span.hour.active.focused:hover,
.datepicker tbody tr > td span.hour.active,
.datepicker tbody tr > td span.minute.focused,
.datepicker tbody tr > td span.minute.focused:hover,
.datepicker tbody tr > td span.minute.active:hover,
.datepicker tbody tr > td span.minute.active.focused:hover,
.datepicker tbody tr > td span.minute.active,
.datepicker tbody tr > td span.month.focused,
.datepicker tbody tr > td span.month.focused:hover,
.datepicker tbody tr > td span.month.active:hover,
.datepicker tbody tr > td span.month.active.focused:hover,
.datepicker tbody tr > td span.month.active{
    background: #0abb87 !important;
    color:  #ffffff !important;
}

.kt-footer__menu  .kt-footer__menu-link {
    
    color: #fff !important;
    
}

.kt-footer__menu  .kt-footer__menu-link:hover,
.kt-footer__menu  .kt-footer__menu-link:focus{
    
    color: #dc3545 !important;
    
}

.kt-widget__username{
    font-size: 1rem !important;
}

.map {
        height: 100%;
      }


/* WIZARD CSS */
#msform {
    text-align: center;
    position: relative;
    margin-top: 20px;
}



#msform fieldset {
    /* background: white; */
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    padding-bottom: 20px;

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}





/*FieldSet headings*/
.fs-title {
    font-size: 25px;
    color: #2C3E50;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
}

#progressbar .active {
    color: #000000;
}

#progressbar li {
    list-style-type: none;
    font-size: 12px;
    width: 33.33%;
    float: left;
    position: relative;
}


/*Icons in the ProgressBar*/
#progressbar #quiz:before {
    font-family: FontAwesome;
    content: "\f05a";
}

#progressbar #question:before {
    font-family: FontAwesome;
    content: "\f00b";
}

#progressbar #settings:before {
    font-family: FontAwesome;
    content: "\f085";
}


/*ProgressBar before any progress*/
#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 18px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
}

/*ProgressBar connectors*/
#progressbar li:after {
    content: '';
    width: 99%;
    height: 2px;
    background: lightgray;
    position: absolute;
    /* left: 0; */
    top: 25px;
    /* z-index: -1; */
}
/*ProgressBar connectors*/
#progressbar li:last-child:after {

    height: 0px;
}

/*Color number of the step and the connector before it*/
#progressbar li.active:before,
#progressbar li.active:after {
    background: #5867dd;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

/* Hide default HTML checkbox */
.switch input {
    display: none;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 1px;
        top: 1px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
}

input.sw-default:checked+.slider {
    background-color: #444;
}

input.sw-primary:checked+.slider {
    background-color: #5867dd;
}

input.sw-success:checked+.slider {
    background-color: #8bc34a;
}

input.sw-info:checked+.slider {
    background-color: #3de0f5;
}

input.sw-warning:checked+.slider {
    background-color: #FFC107;
}

input.sw-danger:checked+.slider {
    background-color: #f44336;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

#myDIV2 { 
    height: 18px;
  width: 800px;
  padding: 0;
  overflow: hidden;
  position: relative;
  display: inline-block;
  margin: 0 5px 0 5px;
  
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #000;
}


/* Custom for Storage */

/* Offcanvas styles */
.offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  width: 800px;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
  z-index: 1050;
}

.offcanvas.show {
  transform: translateX(0%);
}

/* Backdrop */
.offcanvas-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  pointer-events: none !important;
}

/* Disable scroll when offcanvas is open */
body.offcanvas-open {
  overflow: hidden;
}

/* Offcanvas Header */
.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #dee2e6;
}

.offcanvas-title {
  margin-bottom: 0;
  font-size: 1.25rem;
}

/* Offcanvas Body */
.offcanvas-body {
  padding: 1rem;
  overflow-y: auto;
  height: calc(100% - 56px); /* Adjust if header height changes */
}

.offcanvas-body::-webkit-scrollbar {
  width: 8px;
}

/* Close Button */
.btn-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: #000;
  opacity: 0.5;
  cursor: pointer;
}



/* progress bar for storage */
.storage-progress {
    margin-top: 20px;
    width: 100%;
}

.storage-progress-label {
    font-size: 14px;
    margin-bottom: 5px;
    text-align: center;
}

.storage-progress-bar {
    width: 100%;
    height: 16px;
    background-color: #b0b0b082;
    border-radius: 10px;
    overflow: hidden;
}

.storage-progress-fill {
    height: 100%;
    background-color: #cf189b; /* You can change color here */
    transition: width 0.5s ease-in-out;
}

.storage-breakdown-item {
    font-size: 14px;
    padding: 2px 0;
    /* border-bottom: 1px dashed #ccc; */
}
.storage-breakdown-item:last-child {
    border-bottom: none;
}