:root {
    --main-bg-color: #2c3e50;
    --main-bg-color-light: #3c5064;
    --info: #42BFDD;
    --accent: #BBE6E4;
    --off-accent: #E6BEAE;
}

@media print
{
    .no-print, .no-print *
    {
        display: none !important;
    }

    body {
        background-color: white;
    }
}

html {
    height: 100%;
}

.btn {
    min-width: 64px;
    height: 32px;
    border-radius: 8px;
    padding: 2px 6px;
    text-align: center;
    color: var(--accent);
    background-color: transparent;
    border: 1px solid white;
    font-weight: bold;
}

.btn:hover {
    /*font-weight: bold;*/
    box-shadow: 2px 2px 4px #888888;
    cursor: pointer;
}

.btn-accent {
    min-width: 64px;
    height: 32px;
    border-radius: 8px;
    padding: 2px 6px;
    text-align: center;
    color: var(--off-accent);
    background-color: transparent;
    border: 1px solid var(--off-accent);
    font-weight: bold;
}


.btn-accent:hover {
    /*font-weight: bold;*/
    box-shadow: 2px 2px 4px #888888;
    cursor: pointer;
}

.btn-accent:disabled {
    color: #888888;
}

.btn-accent:disabled:hover {
    /*font-weight: bold;*/
    box-shadow: none;
    cursor: not-allowed;
}

/*BASIC TABLE*/

.basic-table {
    border-collapse: collapse;
    margin: 1%;
    font-size: 0.9em;
    font-family: sans-serif;
    border: 1px solid white;
    width: 98%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.basic-table thead tr {
    color: #ddd;
    background-color: var(--main-bg-color);
    text-align: center;
}

.basic-table thead tr:last-of-type {
    border-bottom: 2px solid #ddd;
}

.basic-table th,
.basic-table td {
    padding: 12px 15px;
}
.basic-table tbody tr {
    border-bottom: 1px solid #dddddd;
}
.basic-table tbody tr:nth-of-type(even) {
    /*background-color: #f3f3f3;*/
}
.basic-table tbody tr:last-of-type {
    border-bottom: 2px solid #ddd;
}
.basic-table tbody tr:hover {
    /*font-weight: bold;*/
    color: white;
    background-color: var(--main-bg-color-light);
    cursor: pointer;
}

.selector-table {
    border: 1px solid var(--accent);
    border-collapse: collapse;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 8px;
}

.selector-table td {
    border: 1px solid var(--accent);
    cursor: pointer;
}

.selector-table td:hover {
    background-color: var(--main-bg-color-light);
}

.selector-table .selected {
    background:  var(--accent);
    color: var(--main-bg-color)
}

.selector-table .selected:hover {
    cursor: none;
    background-color: var(--accent);
}

.page-selector {
    width: 100%;
}

.page-selector td {
    cursor: pointer;
    border-left: 1px solid white;
}

.page-selector h3 {
    margin: 8px;
}

.selected {
    background-image: linear-gradient(
            rgba(255, 255, 255, 0.9),
            rgba(255, 255, 255, 0)
    );
    color: var(--main-bg-color);
    cursor: none;
}

.checkbox-wrapper {
    display: inline-block;
    border-radius: 10px;
    margin: 0 12px;
    border: 1px solid var(--accent);
    padding: 4px 8px;
    font-size: 16px;
}

.checkbox-wrapper input {
    cursor: pointer;
}

.checkbox-wrapper input:active {
    background-color: var(--accent);
}