/* =========================================================
   CONTENT BLOCKS / CALLOUTS
   ========================================================= */

.fantasy-block {
    background: #f8f1d6;

    color: #161616;

    border-left: 6px solid #d58929;

    border-radius: 4px;

    box-shadow:
        0 2px 8px rgba(0,0,0,0.08);

    padding-top: 18px;
    padding-right: 50px;
    padding-bottom: 18px;
    padding-left: 30px;

    margin-bottom: 24px;
}

.fantasy-block h1,
.fantasy-block h2,
.fantasy-block h3 {
    color: #d58929;
}

.fantasy-block p,
.fantasy-block li {
    color: #222222;
    line-height: 1.65;
}

/* =========================================================
   TABLE WRAPPER
   ========================================================= */

.table-wrapper {
    margin: 0;
    overflow: auto;
    overflow-y: hidden;

    scrollbar-color: #999 transparent;

    max-width: 640px;

    background: #f6f3eb;

    border: 1px solid #cfc6b7;

    box-shadow:
        0 2px 10px rgba(0,0,0,0.08);

    padding: 12px;
}

/* Scrollbar */
.table-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: #999;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.table-wrapper > table {
    width: 100%;
}


/* =========================================================
   TABLES
   ========================================================= */

table {
    width: 100%;

    margin-bottom: 24px;

    border-collapse: collapse;

    background: #f6f3eb;

    color: #111111;

    border: 1px solid #b9b2a4;
}

/* Table headers */
sidebar_table_head th, table th {
    padding: 8px 10px;

    background: #222222 !important;

    color: #ffffff !important;

    text-transform: uppercase;

    letter-spacing: 0.05em;

    font-weight: 800;

    text-align: left;
}

/* Table body cells */
table td {
    padding: 10px;

    line-height: 1.45;

    border-bottom: 1px solid #d8d1c3;

    vertical-align: top;
}

/* Alternating rows */
table tr:nth-child(even) {
    background: #f8f1d6 !important;
}

table tr:nth-child(odd) {
    background: #f2e2aa !important;
}

/* Hover */
table tr:hover {
    background: rgba(213,137,41,0.30) !important;
}


.reader-content {
    background:
        url('/libraryimages/FalloutBG.webp') !important;

    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;

    text-shadow:
        0 0 1px rgba(255,255,255,0.03);
}