/* Color Palette */
:root {
    --cci-blue: #0095a9;
    --cci-gray: #707170;
    --accent-blue-dark: #21525e;
    --accent-blue-light: #50b3c9;
    --accent-gray: #cbcacb;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #bb222a;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
}
/*^^ Color Palette ^^*/


/* body */
    body {
        margin: 0%;
        font-family: Muli, sans-serif;
        font-size: .875rem;
        font-weight: 400;
        line-height: 1.5;
        color: black;
        text-align: center;
        background-color: var(--bs-dark);
        word-wrap: break-word;
        overflow-x: hidden;
    }

    #errors {
        color: var(--bs-danger);
        font-weight: bold;
    }
/*^^ body ^^*/


/* Wrapper */
    #wrapper {
        background-color: white;
        padding: 0%;
    }
/*^^ Wrapper ^^*/




/* Section */
    section {
        background-color: white;
        padding-left: 0%;
        padding-bottom: 1%;
    }

    /* Data Pages */
    .left-panel {
        color: white;
        text-align: center;
        background-color: var(--accent-blue-dark);
        border-radius: 0px 0px 10rem 0px;
        border-right: 1rem solid white;
        padding-bottom: 10rem;
    }
    .right-panel {
        background-color: var(--accent-blue-light);
        border-radius: 0px 0px 0px 10rem;
        padding-right: 0%;
        padding-left: 0%;
        padding-bottom: 5rem;
    }
    .filter-btn {
        color: white;
    }
    .new-btn {
        float: right;
        align-items: center;
        color: white;
    }
    .item-title {
        border-bottom: 1rem solid white;
    }
    .item-title .btn {
        float: right;
        align-items: center;
        margin-right: .5rem;
    }
    .item-content {
        border-bottom: 1rem solid white;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .item-extra {
    padding-top: 1rem;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    }

    /* 
    TO REMOVE AND GENERALIZE
    */
    .customers-spec-add-edit {
        background-color: var(--accent-blue-light);
        border-radius: 0px 0px 0px 10rem;
        padding-right: 0%;
        padding-left: 0%;
        padding-bottom: 5rem;
    }
    #job-data {
        padding-right: 0%;
        padding-left: 0%;
    }
    .skids-list-add {
        text-align: center;
        background-color: var(--accent-blue-light);
        border-radius: 1rem;
        border: 0.3rem solid white;
    }
    .skids-list-active {
        text-align: center;
        background-color: var(--accent-blue-light);
        border-radius: 1rem;
        border: 0.3rem solid white;
        max-height: 400px;
        overflow-y: auto;
    }
    .skids-list-add:hover, .skids-list-active:hover {
        border: 0.3rem solid var(--accent-blue-dark);
    }
/*^^ Section ^^*/

/* Other */
    .trash-btn:hover {
        color: red;
    }
    .edit-btn:hover {
        color: lightgreen;
    }
    .card {
        padding: 20px;
    }
    img {
        width: auto;
    }
    input {
        margin-bottom: 20px;
    }
    h2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    p {
        padding-top: 0.5rem;
    }
/*^^ Other ^^*/

/* Scrollbar */
    ::-webkit-scrollbar {
        width: 12px;
    }

    /* Track */
    ::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
        -webkit-border-radius: 10px;
        border-radius: 10px;
    }

    /* Handle */
    ::-webkit-scrollbar-thumb {
        -webkit-border-radius: 10px;
        border-radius: 10px;
        background: rgba(0, 0, 0, 0.8); 
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
    }
    ::-webkit-scrollbar-thumb:window-inactive {
        background: rgba(0, 0, 0, 0.4); 
    }
/*^^ Scrollbar ^^*/
