/*

Z-INDEX STACK

9 - notification messages
8 - popup boxes
7 - popup boxes background
6 - profile menu, notifications menu
5 - side bar, profile menu background, notifications menu background
4 - top bar
3 - 
2 - 
1 - 
0 - default, all elements

*/





/*******************/
/*   CUSTOM FONT   */
/*******************/

@font-face {
    /* normal */
    font-family: Poppins;
    src: url("fonts/Poppins/Poppins-Regular.ttf") format("truetype");
    /* ttf - truetype,  */
    font-stretch: normal;
    font-style: normal;
    font-weight: normal;
}

@font-face {
    /* bold */
    font-family: PoppinsBold;
    src: url("fonts/Poppins/Poppins-Bold.ttf") format("opentype");
    font-stretch: normal;
    font-style: normal;
    font-weight: bold;
}



/*****************/
/*   OVERRIDES   */
/*****************/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Poppins;
}

p,
ol,
ul,
li,
td {
    color: #333333;
}

i.fa {
    color: #AAA5A5;
    /* font awesome default icon color */
}

b {
    color: inherit;
}

thead th,
tbody th {
    font-family: Poppins;
}

::placeholder {
    color: #A9A9AB;
    opacity: 1;
    /* Firefox */
    font-family: Poppins;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #A9A9AB;
    font-family: Poppins;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #A9A9AB;
    font-family: Poppins;
}

a.btn,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    font-family: Poppins;
}

blockquote {
    font-family: Poppins;
}

textarea {
    resize: none;
}

select {
    font-family: Poppins;
}



/**************/
/*   LAYOUT   */
/**************/

body {
    margin: 0;
    padding: 0;
    border: 0;
    color: #333333;
    background-color: white;
    font: normal 0.9em/150% Poppins;
    text-shadow: 0px 0px 1px transparent;
    /* google font pixelation fix */
}

.probe-big-button {
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 200, 0.25);
    -moz-box-shadow: 0px 10px 20px 0px rgba(0, 0, 200, 0.25);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 200, 0.25);
    font-family: Poppins;
    font-weight: 700;
    width: 200px;
    height: 50px;
}

.probe-medium-button {
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 200, 0.25);
    -moz-box-shadow: 0px 10px 20px 0px rgba(0, 0, 200, 0.25);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 200, 0.25);
    font-family: Poppins;
    font-weight: 700;
    width: 150px;
    height: 50px;
}

.probe-small-button {
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 200, 0.25);
    -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 200, 0.25);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 200, 0.25);
    font-family: Poppins;
    font-weight: 700;
    font-size: 0.8em;
    padding: 5px 10px;
    width: 100px;
    height: 30px;
}




/*****************/
/*   MY STYLES   */
/*****************/

.simple-input {
    background-color: white;
    border: 1px solid #bbb;
    -webkit-appearance: none;
    box-shadow: inset 0px 0px 0px 0px red;
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
}

hr {
    margin: 0;
    padding: 0;
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.slate {
    background-color: white;
    margin: 5px;
    padding: 10px 15px;
    border: 0;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 200, 0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 200, 0.2);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 200, 0.2);
}

.slate-no-shadow {
    background-color: white;
    margin: 5px;
    padding: 10px 15px;
    border: 0;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.slate-blue {
    background-color: #DFDFEE;
    margin: 5px;
    padding: 0;
    border: 0;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}




/***************/
/*   TOP BAR   */
/***************/

#top-bar {
    display: block;
    z-index: 4;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    /*  */
    background-color: white;
    margin: 0;
    padding: 25px 0px 0px 200px;
    /* left = side bar width */
    border: 0;
    opacity: 1.0;
    vertical-align: middle;

    /* h-offset, v-offset, blur, spread, color */
    -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 200, 0.2);
    -moz-box-shadow: 0px 3px 10px 0px rgba(0, 0, 200, 0.2);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 200, 0.2);
}

#top-bar.collapse {
    padding: 25px 0px 0px 60px;
    /* left = side bar width */
}

#top-bar-page-title {
    display: inline-block;
    line-height: 0em;
    margin: 0px 50px 0px 30px;
    padding: 0;
    border: 0;
    position: relative;
    top: 3px;
    font-size: 24px;
    color: #1f2937;
    font-family: Arial, sans-serif;
    /* margin: 0; */
}

#top-bar-search {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    border: 0;
    position: relative;
    /* required to absolute position search bar icon */
}

#top-bar-search i {
    position: absolute;
    top: 10px;
    left: 10px;
}

#top-bar-search input {
    background-color: rgb(230, 230, 230);
    border: 0;
    -webkit-appearance: none;
    box-shadow: inset 0px 0px 0px 0px red;
    height: 35px;
    width: 200px;
    padding-left: 25px;
    padding-right: 10px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
}

/****************/
/*   SIDE BAR   */
/****************/

#side-bar {
    display: block;
    z-index: 5;
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background-color: white;
    margin: 0;
    padding: 0;
    border: 0;
    opacity: 1.0;
    transition: 0.1s;

    /* h-offset, v-offset, blur, spread, color */
    -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 200, 0.2);
    -moz-box-shadow: 3px 0px 10px 0px rgba(0, 0, 200, 0.2);
    box-shadow: 3px 0px 10px 0px rgba(0, 0, 200, 0.2);
}

#side-bar.collapse {
    width: 60px;
}

#side-bar-logo {
    /*
		display:block;
		width:100%;
		*/
    text-align: center;
    padding: 20px 0px;
    /* 120px height = 20px pad + 80px img + 20px pad */
}

#side-bar-logo img {
    width: 80px;
    height: auto;
}

.collapse #side-bar-logo {
    text-align: center;
    padding: 30px 0px 40px 0px;
    /* 120px height = 30px pad + 50px img + 40px pad */
}

.collapse #side-bar-logo img {
    width: 50px;
    height: auto;
}

#side-bar-title {
    /*visibility:visible;*/
    padding: 0px 0px 15px 30px;
}

#side-bar-title #side-bar-title-content {
    display: block;
}

.collapse #side-bar-title {
    /*visibility:hidden;*/
    height: 20px;
}

.collapse #side-bar-title #side-bar-title-content {
    display: none;
}

#side-bar-expand-collapse-icon {
    cursor: pointer;
    font-size: 1.0em;
    transition: 0.3s;
}

#side-bar-expand-collapse-icon:hover {
    cursor: pointer;
    color: rgb(123 56 192);
}

#side-bar-menu {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0;
    margin: 0;
}

.side-bar-menu-item {
    display: block;
    padding: 7px 15px 7px 30px;
    cursor: pointer;
    transition: 0.1s;
}

.side-bar-menu-item span {
    display: inline-block;
}

.collapse .side-bar-menu-item {
    padding: 7px 15px 7px 15px;
}

.collapse .side-bar-menu-item span {
    display: none;
}

.side-bar-menu-item i {
    font-size: 1.6em;
    position: relative;
    top: 2px;
}

.side-bar-menu-item:hover {
    background-color: rgba(0, 0, 100, 0.05);
}

.side-bar-menu-item.selected {
    background-color: rgba(0, 0, 100, 0.1);
    border-right: 5px solid rgb(123 56 192);
}

.side-bar-menu-item.selected i {
    color: rgb(123 56 192);
}


/*****************/
/*   MAIN PAGE   */
/*****************/

#main-page {
    /* this part is responsive */

    margin: 100px 0px 0px 200px;
    /* top = top bar height, left=side bar width, so no part is hidden behind top and side bar */
    padding: 0;
    border: 0;
    background-color: #F0F0F0;
}

#main-page.collapse {
    margin: 100px 0px 0px 60px;
    /* top = top bar height, left=side bar width, so no part is hidden behind top and side bar */
}

#container-page {
    /* this part is responsive */
    /* top = top bar height, left=side bar width, so no part is hidden behind top and side bar */
    padding: 0;
    border: 0;
    background-color: #F0F0F0;
}

/* Header */

.navigate-back,.navigate-right {
    display: inline-block;
    margin-left: 20px;
    vertical-align: middle;
}

.navigate-back i, .navigate-right i {
    font-size: 2.5em;
    color: #999;
    cursor: pointer;
    transition: 0.3s;
}

.navigate-back i:hover {
    color: #36A2EB;
    transform: rotate(360deg);
}

.navigate-right i:hover{
    color: #36A2EB;
}



/*** MESSAGES MENU STYLE ***/

#messages-menu-background {
    visibility: hidden;
    opacity: 0.0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 5;
    left: 0px;
    top: 0px;
    background-color: rgb(0, 0, 0);
    overflow: hidden;
    transition: 0;
}

#messages-menu {
    visibility: hidden;
    opacity: 0.0;
    z-index: 6;
    width: 400px;
    height: 50px;
    position: fixed;
    left: 0px;
    top: 0px;
    padding: 15px;
    margin: 0;
    border: 1px solid #eee;
    background-color: #fff;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 0px 5px 30px -5px #aaa;
    -moz-box-shadow: 0px 5px 30px -5px #aaa;
    box-shadow: 0px 5px 30px -5px #aaa;
    font-size: 0.9em;
    font-weight: 400;
    color: #000;
    text-align: left;
    overflow: hidden;
    transition: width 0.1s, height 0.1s;
    /* affect just width and height, ignore position via top and left */
}

.messages-item {
    cursor: pointer;
}

.messages-item:hover {
    background-color: #eee;
}

.messages-item-pic-div {
    display: inline-block;
    width: 15%;
    vertical-align: top;
    padding: 5px 5px 5px 5px;
}

.messages-item-pic-div img {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.messages-item-info-div {
    display: inline-block;
    width: 84%;
    vertical-align: top;
    padding: 5px 5px 5px 5px;
}

.messages-item-info-div a {
    text-decoration: none;
}



/*** NOTIFICATIONS MENU STYLE ***/

#notifications-menu-background {
    visibility: hidden;
    opacity: 0.0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 5;
    left: 0px;
    top: 0px;
    background-color: rgb(0, 0, 0);
    overflow: hidden;
    transition: 0;
}

#notifications-menu {
    visibility: hidden;
    opacity: 0.0;
    z-index: 6;
    width: 400px;
    height: 50px;
    position: fixed;
    left: 0px;
    top: 0px;
    padding: 15px;
    margin: 0;
    border: 1px solid #eee;
    background-color: #fff;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 0px 5px 30px -5px #aaa;
    -moz-box-shadow: 0px 5px 30px -5px #aaa;
    box-shadow: 0px 5px 30px -5px #aaa;
    font-size: 0.9em;
    font-weight: 400;
    color: #000;
    text-align: left;
    overflow: hidden;
    transition: width 0.1s, height 0.1s;
    /* affect just width and height, ignore position via top and left */
}

.notifications-item {
    cursor: pointer;
}

.notifications-item:hover {
    background-color: #eee;
}

.notifications-item-pic-div {
    display: inline-block;
    width: 15%;
    vertical-align: top;
    padding: 5px 5px 5px 5px;
}

.notifications-item-pic-div img {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.notifications-item-info-div {
    display: inline-block;
    width: 84%;
    vertical-align: top;
    padding: 5px 5px 5px 5px;
}

.notifications-item-info-div a {
    text-decoration: none;
}



/*** PROFILE MENU STYLES ***/

#profile-menu-background {
    visibility: hidden;
    opacity: 0.0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 5;
    left: 0px;
    top: 0px;
    background-color: rgb(0, 0, 0);
    overflow: hidden;
    transition: 0;
}

#profile-menu-admin {
    visibility: hidden;
    opacity: 1.0;
    z-index: 6;
    width: 250px;
    height: 100px;
    position: fixed;
    left: 0px;
    top: 0px;
    padding: 0;
    margin: 0;
    border: 1px solid #eee;
    background-color: #fff;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 0px 5px 30px -5px #aaa;
    -moz-box-shadow: 0px 5px 30px -5px #aaa;
    box-shadow: 0px 5px 30px -5px #aaa;
    font-size: 0.9em;
    font-weight: 400;
    color: #000;
    text-align: left;
    overflow: hidden;
    transition: width 0.1s, height 0.1s;
    /* affect just width and height, ignore position via top and left */
}

#profile-menu-client {
    visibility: hidden;
    opacity: 0.0;
    z-index: 6;
    width: 250px;
    height: 50px;
    position: fixed;
    left: 0px;
    top: 0px;
    padding: 0;
    margin: 0;
    border: 1px solid #eee;
    background-color: #fff;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 0px 5px 30px -5px #aaa;
    -moz-box-shadow: 0px 5px 30px -5px #aaa;
    box-shadow: 0px 5px 30px -5px #aaa;
    font-size: 0.9em;
    font-weight: 400;
    color: #000;
    text-align: center;
    vertical-align: top;
    overflow: hidden;
    transition: width 0.1s, height 0.1s;
    /* affect just width and height, ignore position via top and left */
}

.profile-menu-option {
    cursor: pointer;
    display: block;
    margin: 0;
    padding: 0px 0px 0px 20px;
    text-align: left;
    vertical-align: middle;
    height: 50px;
    line-height: 50px;
    /* hack for vertical align middle */
    font-weight: 400;
    /* normal */
}

.profile-menu-option:hover {
    background-color: #EDEDED;
}

.profile-menu-option i {
    color: black;
    font-size: 1.6em;
    margin-right: 7px;
    position: relative;
    top: 2px;
}



/*** - ***/

.top-bar-counter {
    font-size: 0.8em;
    font-weight: 700;
    position: absolute;
    top: -10px;
    left: 10px;
    width: 20px;
    height: 20px;
    text-align: center;
    background-color: red;
    color: white;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    display: none;
}

.form_group {
    display: inline-block;
    /* width: 49%;  */
    margin: 0;
    border: 0;
}

.form_group.left {
    padding-right: 10px;
}

.form_group.right {
    padding-left: 10px;
}

.form_group label {
    display: block;
}

.form_group input[type=text],
.form_group input[type=number],
.form_group input[type=date],
.form_group input[type=url],
.form_group input[type=datetime-local],
.form_group input[type=email] {
    background-color: #f7f7f7;
    border: 1px solid #e9e9e9;
    -webkit-appearance: none;
    box-shadow: inset 0px 0px 0px 0px red;
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    width: 100%;
    font-family: Poppins;
}

.form_group textarea {
    background-color: #f7f7f7;
    border: 1px solid #e9e9e9;
    /*-webkit-appearance:none;*/
    box-shadow: inset 0px 0px 0px 0px red;
    width: 100%;
    height: 150px;
    padding-left: 10px;
    padding-right: 10px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    font-family: Poppins;
    resize: none;
}

.form_group select {
    background-color: #f7f7f7;
    border: 1px solid #e9e9e9;
    /*-webkit-appearance:none;*/
    box-shadow: inset 0px 0px 0px 0px red;
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    width: 100%;
    font-family: Poppins;
}

.form_group fieldset {
    width: fit-content;
}

input[type=text]:focus,
input[type=number]:focus,
input[type=date]:focus,
input[type=url]:focus,
input[type=datetime-local]:focus,
input[type=email]:focus,
select:focus,
textarea:focus {
    -webkit-box-shadow: 0 0 7px #6DB9FF;
    -moz-box-shadow: 0 0 7px #6DB9FF;
    box-shadow: 0 0 7px #6DB9FF;
    border: 1px solid #50B1FE;
    outline: none;
}

.tm_label {
    padding: 3px 5px;
    border-radius: 3px;
    border: 1px solid transparent;
    outline: 0;
    margin-bottom: 25px;
    font-family: museo-sans, Lato, helvetica neue, sans-serif;
    background: #47A5DF;
    font-size: .8rem;
    color: #fff;
    line-height: normal;
    font-weight: 700;
    margin-right: 5px;
}

/* Profile image display */
.image-container {
    position: relative;
    display: inline-block;
}

.profile-image {
    width: 100px;
    height: 100px !important;
    border-radius: 10px;
    margin: 0;
    padding: 0;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    object-fit: contain !important;
}

.upload-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 14px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 5px;
}

.image-container:hover .upload-text {
    opacity: 1;
}

/* The Error Modal (background) */
.errmodal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Content/Box */
.errmodal .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    /* width: 80%; */
    width: fit-content;
    animation: fadeIn 0.3s ease-in-out;
}

/* Close Button */
.errmodal .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.errmodal .close:hover,
.errmodal .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.div_liner {
    line-height: 1.5em;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.div_liner i {
    font-size:1.3em; 
    position:relative; 
    top:2px; 
    margin-right:3px;
}

.filter_group {
    display: inline-block;
    width: 79%;
    /* text-align: right; */
}

.filter_group .box {
    display: inline-block;
    margin-right: 40px;
    /* padding-left: 5; */
}

.filter_line_group {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.filter_line_group input,
select {
    padding: 8px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.filter_line_group label {
    font-weight: bold;
    margin-bottom: 5px;
}

.filter_line_group div {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 30%;
}

.box {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.box i {
    margin-right: 10px;
}

.full-width {
    width: 100%;
}

.strip {
    cursor: pointer;
    margin: 10px 0px 0px 0px;
    padding: 10px 20px;
    border: 0;
    background-color: #eee;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    top: 0px;
    transition: 0.2s;
}

.tab-heading {
    display: inline-block;
    line-height: 1.5em;
    margin-bottom: 30px;
    padding-bottom: 5px;
    margin-right: 25px;
    cursor: pointer;
}

.tab-heading-highlight {
    border-bottom: 5px solid #7b38c0;
}

.tab-heading:hover {
    color: #aaa5a5;
}

/* Filter Section */
.filter-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.filter-section .filter-icon {
    font-size: 1.2em;
    color: #6b7280;
}

.filter-section .divider {
    height: 24px;
    width: 1px;
    background-color: #e5e7eb;
    margin: 0 5px;
}

.filter-section select {
    padding: 8px 24px 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background-color: #fff;
    color: #1f2937;
    min-width: 150px;
    max-width: 200px;
    flex: 1;
}

.filter-section button {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.filter-section button.generate {
    background-color: #4f46e5;
    color: white;
}

.filter-section button.reset {
    background-color: #fee2e2;
    color: #dc2626;
}

/* Slider Check */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch.small{
    width: 40px;
    height: 14px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.switch.small .slider:before{
    height: 10px;
    width: 10px;
    left: 2px;
    bottom: 2px;
}


input.slide:checked+.slider {
    background-color: #7b38c0;
}

input.slide:checked+.slider:before {
    transform: translateX(26px);
}

.progress-container {
    width: 100%;
    background-color: #e0dede;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    width: 0;
    height: 10px;
    background-color: #0000ff;
    /* Blue fill */
    border-radius: 25px;
    transition: width 0.5s ease-in-out;
}

 #sandbox-banner {
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        height: 30px;
        background: linear-gradient(to bottom, rgba(136, 136, 136, 0.8), rgba(85, 85, 85, 0.8));
        backdrop-filter: blur(4px);
        color: white;
        font-weight: bold;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
        z-index: 3;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 2px 4px rgba(0, 0, 0, 0.2);
    }
#sandbox-banner a {
    color: white;
    text-decoration: underline;
}
#sandbox-banner *{
    color: white;
}