:root {
    --CI-grey: #7B929A;  /* Replace with your actual grey */
    --CI-blue: #0C80D3;  /* Replace with your actual blue */
    --CI-black: #192D37; /* Replace with your actual black */
    --CI-BG: #f0f0f0;
}

html,
body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    background: var(--CI-BG) !important;
    font-size: 13pt;
    font-family: "Helvetica Neue", Arial, sans-serif;

}

h1{
    color:var(--CI-black);
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 20pt;
}

.row {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: space-evenly;
}

.column {
    display: flex;
    flex-direction: column;
}

.grow {
    flex-grow: 1;
}

.bottom {
    align-self: flex-end;
}

.btn {
    color: var(--CI-blue);
    background-color: white;
    border: 1px solid var(--CI-blue);
    font-weight: bold;
    transition: background-color 0.125s ease-in-out;
    border-radius: 8px;
}

.btn:hover {
    color: var(--CI-blue);
    background-color: rgb(191, 235, 255);
    border: 1px solid var(--CI-blue);
}

.btn-brand{
    font-weight: bold;
    color: var(--CI-blue);
    border: 1px solid var(--CI-blue);
}

.btn-brand:hover{
    background-color: #d3e2f8;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: rgb(59,130,246);
    color:white;
    transition: background-color 0.125s ease-in-out;
}

.btn-primary:hover{
    background-color: rgb(48, 104, 194);
    color:white;
}

.btn-delete.icon {
    background: none;
    border: none;
    color: red;
    font-size: 1.2em;
    cursor: pointer;
}

.btn-secondary{
    border:1px solid var(--CI-grey);
    color: var(--CI-grey);
}
.btn-secondary:hover{
    border:1px solid var(--CI-grey);
    background-color: var(--CI-grey);
    color:white;
}

.btn-success:hover{
    background: var(--CI-blue);
    color:white;
}

.btn-danger {
    /* background: none;
    border: none; */
    color: white;
    background-color: red;
    cursor: pointer;
    border: 1px solid red;
}

.btn-danger:hover {
    color: white;
    background-color: rgb(255, 91, 25);
    cursor: pointer;
    border: 1px solid red;
}

.btn-desk{
    border: 1px solid #c3c3c3;
    /* color:  var(--CI-blue); */
    color: var(--CI-grey);
    font-size: 10pt;
}

.btn-remote{
    border: 1px solid #c3c3c3;
    /* color:  orange; */
    color: var(--CI-grey);
    font-size: 10pt;
}

.btn-absent{
    border: 1px solid #c3c3c3;
    /* color:  red; */
    color: var(--CI-grey);
    font-size: 10pt;
}

.modal-content{
    /* background: white; */
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

}


.mobile-only{
    display: none;
}

@media only screen and (max-width: 768px) {
    .card{
        width: 100%;
        margin: 0px;
    }

    .table{
        width: 100%;
    }

    .mobile-hidden{
        display:none;
    }

    .mobile-only{
        display: inline;
    }
}