﻿/* Colors and Design*/

.checklist-row:nth-child(odd) {
    background-color: #5c5959;
}

.checklist-row:nth-child(even) {
    background-color: #696868;
}

body {
    background-color: #303030 !important;
    color: white !important;
}

.primary {
    background-color: #5c5959;
    color: white;
}

.primary-variant {
    background-color: #696868;
    color: white;
}


.warning {
    background-color: #0F4C81;
    color: #03DAC6;
}

.warning-text {
    color: #fe6f96;
}


.header {
    background-color: #684a8d!important;
    color: white;
}

.secondary {
    background-color: #424242!important;
    color: white;
}

.secondary-variant {
    background-color: #018786!important;
    color: white;
}

.link-hover a:hover {
    background-color: black;
    color: white;
}

.tooltip {
    background-color: #018786;
    color: white;
    font-weight: bold;
}

.main-header {
    background-color: #018786;
    color: white;
}

.header-variant {
    background-color: #05cfbc;
    color: black;
    font-weight: bold;
}

.financial-header {
    background-color: #018786;
    color: white;
    padding: 5px;
}

.w3-ul li {
    padding: 8px 16px;
    border-bottom: 1px solid #626262;
}

.w3-text-grey, .w3-hover-text-grey:hover, .w3-text-gray, .w3-hover-text-gray:hover {
    color: #bab7b7 !important;
}

 /* Tables */
.table tbody tr:hover {
    background-color: #616E7C!important;

}

tr:nth-child(even) {
    background-color: #2D2D2D!important; 
    color: #FFFFFF; 
}

tr:nth-child(odd) {
    background-color: black!important; 
    color: #FFFFFF; 
}

.table {
    border: 1px solid #ccc !important;
}

.table thead tr, .bn-table thead tr {
    background-color: #05a3a1 !important;
    color: white;
}

tr {
    border-bottom: 1px solid #ddd;
}

.tutorial {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.modal-table {
    border-collapse: collapse;
    border-spacing: 0;
}
.modal-table th {
    background-color: #05cfbc;
    color: black !important;
    font-size: 12px;
    border: 1px solid #ddd;
}

.modal-table td {
    color: gold;
    font-size: 14px;
    border: 1px solid #ddd;
    width: 100%;
}

.paginate_button.disabled{
    color: black!important;
}
/* User Input / Forms */
textarea {
    background-color: #616E7C;
    border-bottom: white;
    color: white;
}

input {
    background-color: #616E7C!important;
    color: white!important;
}

input::placeholder {
    color: #9CA3AF !important; 
}

select {
    background-color: #616E7C !important;
    color: white !important;
}

::-webkit-input-placeholder { /* Edge */
    color: white;
}

:-ms-input-placeholder { /* Internet Explorer */
    color: white;
}

::placeholder {
    color: white;
}

.fa-smile-o {
    color: #03DAC6 !important;
}
.button:hover {
    color: #000 !important;
    background-color: #9e9e9e !important;
}

.button-main {
    background-color: #4f4e4e;
    border: 2px solid #212020;
    color: white;
}

.button-action {
    background-color: #3c72cb;
    border: 3px solid #2f61b1;
    color: white;
    /* Add transition for smooth pulsing effect */
    transition: box-shadow 0.5s ease-in-out;
    /* Initial box-shadow for subtle glow */
    box-shadow: 0 0 5px #2f61b1;
    /* Apply the animation */
    animation: pulseAnimation 2s infinite;
}

.button-action:hover {
    color: white !important;
    background-color: #619ecc !important;
    border: 3px solid #669ac1 !important;
}


/* Keyframes for pulsing effect */
@keyframes pulseAnimation {
    0% {
        box-shadow: 0 0 5px #3978dd;
    }

    50% {
        box-shadow: 0 0 15px #3978dd; /* Increase the spread for the pulse */
    }

    100% {
        box-shadow: 0 0 5px #3978dd;
    }
}

.button-advance {
    background-color: seagreen !important;
    color: white !important;
}

.messagelink {
    color: #f1fef2 !important;
}

#OtherMessages p:nth-child(even) .messagelink {
    background-color: seagreen !important; 
}

#OtherMessages p:nth-child(odd) .messagelink {
    background-color: #287248 !important;
}

.button-retreat {
    background-color: indianred;
    color: white;
}

.border-bottom {
    border: 1px solid black;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
}

.border-top {
    border: 1px solid black;
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
}

.border {
    border: 1px solid #2D2D2D;
    border-radius: 32px;
}

.warning-border {
    border: 1px solid red!important;
}

.submission-alert {
    background-color: #ddd;
    color: black;
}

.toggle {
    background-color: gray;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.switch {
    background-color: gray;
    color: white;
    padding: 3px;
}


/* Images */

.slider {
    -webkit-appearance: none; /* Override default CSS styles */
    appearance: none;
    width: 100%; /* Full-width */
    height: 25px; /* Specified height */
    background: #d3d3d3; /* Grey background */
    outline: none; /* Remove outline */
    opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
    height: 15px;
    border-radius: 5px;
}


.slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
}


    .slider::-webkit-slider-thumb {
        -webkit-appearance: none; /* Override default look */
        appearance: none;
        width: 25px; /* Set a specific slider handle width */
        height: 25px; /* Slider handle height */
        background: #06bdac; 
        cursor: pointer; /* Cursor on hover */
        height: 25px;
        border-radius: 50%;
    }

    .slider::-moz-range-thumb {
        width: 25px; /* Set a specific slider handle width */
        height: 25px; /* Slider handle height */
        background: #03DAC6; 
        cursor: pointer; /* Cursor on hover */
        height: 25px;
        border-radius: 50%;
    }

.progress-container {
    background-color: #d3d3d3;
}

.progress-bar {
    background-color: seagreen;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#darkmodeMobileToggle, #darkmodeDesktopToggle {
    background: linear-gradient(to bottom right, #fd1d1d, #fcb045);
    cursor: pointer;
    transition: background 0.5s ease-in-out;
}

#darkmodeMobileToggle, #darkmodeDesktopToggle:hover {
    background: linear-gradient(to bottom right, #ee4848, #ffc476);
}

tr.secondary-variant {
    background-color: #018786 !important;
}

/* Load Management Cards */
face fieldset, .face-location {
    background-color: #5a5858!important;
}
.card-fieldset {
    background-color: #4f4e4e!important;
}

.grid-fadeout {
    background: linear-gradient(to top, #5c5959, transparent) !important;
}