html,
body {
    padding: 0;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
        Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    background-color: #25293C;
    color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

* {
    box-sizing: border-box;
}

.sortable span {
    font-size: 0.8em;
    /* Adjust size as needed */
}

.logo img {
    width: 150px;
}

.logoLogin img {
    width: 250px;
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    /* Dark background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.sortable::after {
    content: '▲▼';
    /* Default: both arrows */
    font-size: 12px;
    /* Adjust size as needed */
    margin-left: 5px;
    /* Space between header text and arrows */
}

.sortable.sorting-asc::after {
    content: '▲';
    /* Arrow up when sorting ascending */
}

.sortable.sorting-desc::after {
    content: '▼';
    /* Arrow down when sorting descending */
}

#clicksTable th,
#clicksTable td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.first-column {
    width: 15px;
}

.custom-switch-size {
    transform: scale(1.5);
    /* Adjust the scale value as needed */
}

#dataRetrieveContainer .btn {
    margin-right: 6px;
    /* Adjust the value as needed */
}


.form-control:disabled {
    background-color: #a5a5a5;
    opacity: 1;
    border: #a5a5a5;
}


/* add campaign modal */
.progress-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.progress {
    flex-grow: 1;
    /* Make progress bars grow equally */
    margin: 0 5px;
}

.badge-step {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    /* Vertically center the text */
    border-radius: 50%;
    background-color: #6c757d;
    /* Bootstrap secondary color */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
}

.badge-step.active {
    background-color: #0d6efd;
    /* Bootstrap primary color */
}

/* color for tags */
.choices__item--selectable {
    background-color: #0d6efd !important;
    /* Bootstrap primary color */
    color: #fff !important;
}

.choices__button {
    color: #fff !important;
    background-color: #0d6efd !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
}

.choices {
    display: block;
    width: 100%;
    font-weight: 400;
    line-height: 1;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.choices__list--multiple .choices__item {
    display: inline-block;
    vertical-align: middle;
    border-radius: 10px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 3.75px;
    margin-bottom: 3.75px;
    background-color: #0d6efd !important;
    border: 1px solid #0d6efd;
    color: #fff;
    word-break: break-all;
    box-sizing: border-box;
}

.choices__inner {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    background-color: #f9f9f9;
    padding: 1.5px 7.5px 3.75px;
    border: 1px solid #ddd;
    border-radius: 2.5px;
    font-size: 14px;
    min-height: 40px;
    overflow: hidden;
}

.placeholder-shown::before {
    /* content: 'Select an option...'; */
    color: #6c757d;
    /* Placeholder text color */
    pointer-events: none;
}

h5.card-header {
    border-color: #fff;
}

/* buttons */
/* Default state */
.btn-indigo {
    color: #fff;
    background-color: indigo;
    border-color: indigo;
}

/* Hover state */
.btn-indigo:hover {
    color: #fff;
    background-color: darkslateblue;
    /* slightly darker indigo on hover */
    border-color: darkslateblue;
}

/* Focus state */
.btn-indigo:focus,
.btn-indigo.focus {
    color: #fff;
    background-color: darkslateblue;
    border-color: darkslateblue;
    box-shadow: 0 0 0 0.2rem rgba(75, 0, 130, 0.5);
    /* Adjust the RGBA for a matching indigo color */
}

/* Active state */
.btn-indigo:active,
.btn-indigo.active,
.show>.btn-indigo.dropdown-toggle {
    color: #fff;
    background-color: darkslateblue;
    border-color: darkslateblue;
}

/* Disabled state */
.btn-indigo:disabled,
.btn-indigo.disabled {
    color: #fff;
    background-color: indigo;
    border-color: indigo;
}


/* list items border color */
.list-group-item {
    border-color: #595959 !important;
}


/* Define colors for different ranges */
.very-poor {
    background-color: #ac1917;
}

.poor {
    background-color: #b75420;

}

.fair {
    background-color: #c0982b;

}

.good {
    background-color: #768b45;

}

.very-good {
    background-color: #237f5d;

}

.excellent {
    background-color: #156b8a;

}

.outperformer {
    background-color: #704776;
}

#fallbackSection, #editFallbackSection {
    display: none;
}

/* input[type="date"i] {
    border-radius: 5%;
    border: none;
    height: 30px;
} */

/* Style when the section is to be shown */
/* .show {
    display: block;
} */