*, *::before, *::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;

    --header-height: 100px;
    --footer-height: 100px;
}

body {
    background-color: #FFF !important;

    min-height: 100vh;
    margin: 0;
    padding: 0;

    position: relative;

    display: flex;
    flex-flow: column nowrap;
}

header {
    background-color: #0D0E14;
    height: var(--header-height);
}

.search-customer {
    flex: 1;

    display: flex;
    flex-flow: row nowrap;
}

aside {
    position: sticky;
    top: var(--header-height);
    flex: 0;
    flex-basis: 300px;
    max-height: calc(100vh - var(--header-height) - var(--footer-height));
    padding: 1rem;
}

.aside-inner {
    display: flex !important;
    flex-flow: column nowrap;
    gap: 2rem;
    
    padding: 1rem;
    border-radius: 12px;
    background-color: #F2F4F7 !important;
    
    overflow: hidden;
    height: 100%;
    max-height: 100%;
}

.main-content {
    flex: 1;
    padding: 2rem;
}

.customer-list {
    flex: 1;
    overflow-y: scroll;
}

footer {
    height: var(--footer-height);
    background-color: #0D0E14;
    padding: 10px;
    border-top: 1px solid #ddd;
    text-align: center;
}

.selectInvoices:hover {
    transform: rotate(360deg);
}

.selectImage {
    width: 70px;
    height: 70px;
}

h1,h4 {
    color:white;
}

.topdownmargin {
    margin-top:15px;
    margin-bottom:15px;
}

.Expired {
    padding-top: 30px;
    padding-bottom: 30px
}

.title {
    font-size:60px;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

td, th {
    border: 1px solid #dddddd;
    text-align: center;
    padding: 8px;
}

.topmargin {
    margin-top:25px;
}

.tableamount {
    text-align:right;
}


thead {
    background-color: #dddddd;
}

.subtitle {
    font-size:30px;
}

.select {
    background-color: #6fc4c2;
    font-size:20px;
    color:whitesmoke;
    border:none;
    padding:5px;
}

.downloadbutton {
    margin-top: 25px;
    padding: 10px;
    font-size: 15px;
    background-color: sandybrown;
    color: whitesmoke;
    border-radius: 30px;
}

.selectbutton {
    margin: 25px;
    padding:10px;
    font-size: 15px;
    background-color: #f05135;
    color:whitesmoke;
    border-radius:30px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.multiselect-container {
    max-height: 250px;
    overflow-y: auto;
}

.chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mt-4{
    margin-top:15px;
}


#searchBox {
    width: 100%;
    padding: 5px;
    margin-top: 10px;
    font-size: 16px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
}


.customer-item {
    display: block;
    padding: 6px 0;
    color: #333;
}

.customer-item:has(input:focus), .customer-item:has(input:hover) {
    background-color: #FFF;
}

#filterButton {
    height: 36px;
    width: 236px;
    margin-top: 10px;
    justify-content: space-between;
    align-items: center;
}