/* Global Reset and Base Styles */
*.bg-dark {
    background-color: #202020 !important;
    color: #ffffff !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
}

/* Body Styles for Different Pages */
body.default {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%), radial-gradient(at top center, rgba(255, 255, 255, 0.40) 0%, rgba(0, 0, 0, 0.40) 120%) #989898;
    background-blend-mode: multiply, multiply;
}

body.login {
    background-color: #282A36;
    display: flex;
    justify-content: center;
    align-items: center;
}

body.signup {
    background-color: #282A36;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    min-height: 100vh;
    color: black;
}

/* Card Styles */
.login-signup-card {
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.login-signup-card.login {
    width: 350px;
    height: auto;
}

.login-signup-card.signup {
    width: 650px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.login-signup-card h2 {
    margin-bottom: 10px;
}

.login-signup-card a.fp {
    width: 100%;
    display: flex;
    color: #5881D0;
}

/* Header */
.header {
    font-weight: bold;
    margin-bottom: 10px;
}

/* Login/Register Tabs */
.login_register {
    display: flex;
    width: 100%;
    border: 1px solid rgba(221, 221, 221, 1);
    border-radius: 25px;
    margin: 15px 0;
}

.login_register a {
    font-size: 1em;
    padding: 10px 25px;
    border: none;
    width: 50%;
    text-decoration: none;
}

.login_register a.login {
    color: #fff;
    cursor: pointer;
    text-align: center;
    border-radius: 50px;
    background-size: 300% 100%;
    transition: all .4s ease-in-out;
}

.login_register a.login:hover {
    background-position: 100% 0;
}

.login_register a.login:focus {
    outline: none;
}

.login_register a.login.color-9 {
    background-image: linear-gradient(to right, #25aae1, #0e375b, #0e375b, #25aae1);
}

.login_register a.register {
    border-radius: 15px;
    background-color: transparent;
    color: black;
}

/* Form Styles */
.form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form input,
.form select {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #DDDDDD;
    color: #A0A6A3;
    font-family: "Roboto Mono", sans-serif;
    box-shadow: 1px 5px 9px rgba(211, 211, 211, .7);
}

.form input.signup,
.form select.signup {
    color: black;
    margin-bottom: 15px;
}

.form .input-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 15px;
}

.form .input-group input {
    flex: 1;
}

.form .input-group .input-group-append button {
    border-radius: 5px;
    border: 1px solid #DDDDDD;
    padding: 10px;
    cursor: pointer;
}

/* Button Styles */
.login_btn,
.signup_btn,
.custom_btn,
.custom_btn_back,
.create_claim_btn,
.update_banking_details_btn,
.how_to_btn {
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    height: 55px;
    text-align: center;
    border: none;
    background-size: 300% 100%;
    width: 100%;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 50px;
    transition: all .4s ease-in-out;
}

.login_btn:hover,
.signup_btn:hover,
.custom_btn:hover,
.custom_btn_back:hover,
.create_claim_btn:hover,
.update_banking_details_btn:hover,
.how_to_btn:hover {
    background-position: 100% 0;
}

.login_btn:focus,
.signup_btn:focus,
.custom_btn:focus,
.custom_btn_back:focus,
.create_claim_btn:focus,
.update_banking_details_btn:focus,
.how_to_btn:focus {
    outline: none;
}

.login_btn.color-9,
.signup_btn.color-9,
.custom_btn.color-9,
.custom_btn_back.color-9,
.create_claim_btn.color-9,
.update_banking_details_btn.color-9,
.how_to_btn.color-9 {
    background-image: linear-gradient(to right, #25aae1, #0e375b, #0e375b, #25aae1);
}

.create_claim_btn .icon-container,
.update_banking_details_btn .icon-container,
.how_to_btn .icon-container {
    margin-right: 10px;
}

/* Footer Card */
.footer_card {
    display: flex;
    width: 100%;
    justify-content: center;
}

.footer_card p {
    margin-right: 10px;
}

.footer_card a {
    color: #5881D0;
}

/* Radio Buttons */
.radio {
    margin: 0.5rem;
}

.radio input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio input[type="radio"] + .radio-label:before {
    content: '';
    background: #f4f4f4;
    border-radius: 100%;
    border: 1px solid #bababa;
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    margin-right: 1em;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}

.radio input[type="radio"]:checked + .radio-label:before {
    background-color: #3197EE;
    box-shadow: inset 0 0 0 4px #f4f4f4;
}

.radio input[type="radio"]:focus + .radio-label:before {
    outline: none;
    border-color: #3197EE;
}

.radio input[type="radio"]:disabled + .radio-label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #bababa;
    background: #bababa;
}

.radio input[type="radio"] + .radio-label:empty:before {
    margin-right: 0;
}

/* Table Styles */
#client_display_table_pc,
#client_display_table_pc_in_progress,
tfoot {
    text-align: center;
    background-color: #202020 !important;
}

#client_display_table_mobile,
#client_display_table_mobile_in_progress,
tfoot {
    background-color: #202020 !important;
}

.table.invoices {
    background-color: white;
    color: black;
}

.table.invoices th,
.table.invoices td {
    text-align: center;
    vertical-align: middle;
}

/* Search Container */
.search-container {
    position: relative;
    width: fit-content;
}

.search-container input {
    padding-left: 2rem;
}

.search-container svg {
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Dropdown Menus */
.custom-dropdown-menu,
.custom-dropdown-menu-mobile {
    background-color: #202020 !important;
    border: none;
}

.custom-dropdown-menu a.dropdown-item,
.custom-dropdown-menu-mobile a.dropdown-item {
    color: #ffffff !important;
}

.custom-dropdown-menu a.dropdown-item:hover,
.custom-dropdown-menu-mobile a.dropdown-item:hover {
    background-color: #333333 !important;
}

/* Multiselect */
.multiselect {
    width: 100%;
}

.selectBox {
    position: relative;
}

.selectBox select {
    width: 100%;
}

.overSelect {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

#checklist_selector {
    display: none;
    border: 0.5px #7c7c7c solid;
    background-color: #ffffff;
    max-height: 150px;
    overflow-y: scroll;
}

#checklist_selector label {
    display: block;
    font-weight: normal;
    white-space: nowrap;
    min-height: 1.2em;
    background-color: transparent;
    padding: 0 2.25rem 0 .75rem;
}

#checklist_selector label:hover {
    background-color: #1e90ff;
}

/* Progress Bar */
.progress-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 10px 0;
    margin-top: 20px;
}

.progress-step {
    width: 100%;
    text-align: center;
    position: relative;
    font-weight: bold;
    font-size: 16px;
    color: #0e375b;
}

.progress-step.active {
    color: white;
}

.progress-bar {
    position: absolute;
    height: 4px;
    top: 26px;
    width: 100%;
    background: linear-gradient(90deg, rgba(37, 170, 225, 1) 25%, rgba(14, 55, 91, 1) 100%);
}

.progress-bar.invoice-totals {
    background: linear-gradient(90deg, rgba(37, 170, 225, 1) 100%, rgba(14, 55, 91, 1) 100%);
}

.progress-bar-active {
    position: absolute;
    height: 4px;
    top: 26px;
    background: linear-gradient(to right, #25aae1 50%, #0e375b);
    transition: width 0.3s ease-in-out;
}

.step-indicator {
    display: inline-block;
    width: 40px;
    height: 40px;
    align-content: center;
    border-radius: 50%;
    border: 2px solid #0e375b;
    background-color: white;
    color: #0e375b;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.step-indicator.active {
    background-color: #25aae1;
    color: white;
    border: none;
}

.step-indicator.completed {
    background-color: white;
    border: 2px solid #25aae1;
    color: #0e375b;
}

/* Miscellaneous */
.sortArrow {
    border-bottom-color: white !important;
    border-top-color: white !important;
}

.swal2-icon {
    margin-left: auto !important;
    margin-right: auto !important;
}

.swal2-confirm {
    background-color: #005fbf !important;
    color: #fff !important;
}

.star {
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
}

.checked {
    color: gold;
}