:root {
    --background-light: #bcbcbc;
    --background-dark: #898989;
}

/* **********
* Showthread
******** */

.scenetracker_user {
    display: inline-block;
}

.scenetracker_user:after {
    content: ", ";
}

.scenetracker_user:last-child:after {
    content: none;
}

.breadcrumbs li {
    display: inline-block;
}

.breadcrumbs li:after {
    content: ">";
    margin-left: 10px;
}

.breadcrumbs li:last-child:after {
    content: none;
}

/* **********
* UCP
******** */

.scene_ucp.container.alerts {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.scene_ucp.alerts_item {
    display: block;
    width: 48%;
}

.scene_ucp.scenefilteroptions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.scene_ucp.scenefilteroptions h2 {
    width: 100%;
}

.scenefilteroptions__items {
    width: 32%;
}

.scene_ucp.container,
fieldset.scenefilteroptions__items {
    box-sizing: border-box;
}

/* ********************************
SCENETRACKER CLEAN MINIMAL
******************************** */

.scene_ucp.overview_chara_con {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px 60px;

    margin-top: 40px;
}

.scene_compact_header {
    margin-bottom: 18px;

    font-family: 'Cinzel', serif;
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #c9a86a;
}
.scene_compact_list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.scene_compact_row {
    display: flex;
    flex-direction: column;
    gap: 8px;

padding-bottom: 20px;
border-bottom: 1px solid rgba(201,168,106,0.12);
}

.scene_compact_title,
.scene_compact_title a {
    color: #c9a86a !important;
    text-decoration: none;

    font-size: 26px;
    line-height: 1.15;

    transition: opacity 0.3s ease;
}

.scene_compact_title a:hover {
    opacity: 0.7;
}

.scene_compact_date {
    color: #787878;
    font-size: 13px;
    letter-spacing: 0.4px;
}

.scene_compact_status {
    display: none;
}

/* ********************************
MOBILE
******************************** */

@media screen and (max-width: 900px) {

    .scene_ucp.overview_chara_con {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .scene_compact_header {
        font-size: 34px;
    }

    .scene_compact_title,
    .scene_compact_title a {
        font-size: 18px;
    }
}
/* SCENETRACKER UCP CLEANUP */

.scene_ucp.container.alerts,
.scene_ucp.scenefilteroptions {
    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(201,168,106,0.12);

    padding: 28px;
    margin-bottom: 45px;
}

.scene_ucp.container.alerts h2,
.scene_ucp.scenefilteroptions h2 {
    font-family: 'Cinzel', serif;

    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #c9a86a;

    margin-bottom: 25px;
}

.scene_ucp.alerts_item,
.scenefilteroptions__items {
    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.05);

    padding: 18px;
}

.scene_ucp.alerts_item label,
.scenefilteroptions__items label {
    color: #bcbcbc;
    font-size: 14px;
    line-height: 1.6;
}

.scene_ucp.scenefilteroptions select,
.scene_ucp.scenefilteroptions input[type="text"] {
    width: 100%;

    background: #151515;
    border: 1px solid rgba(201,168,106,0.2);

    color: #d9d9d9;

    padding: 10px 12px;
    margin-top: 8px;
}

.scene_ucp.scenefilteroptions input[type="submit"],
.scene_ucp.container.alerts input[type="submit"] {
    background: #c9a86a;
    border: none;

    color: #111111;

    padding: 10px 18px;
    margin-top: 20px;

    text-transform: uppercase;
    letter-spacing: 1px;

    cursor: pointer;

    transition: all 0.3s ease;
}

.scene_ucp.scenefilteroptions input[type="submit"]:hover,
.scene_ucp.container.alerts input[type="submit"]:hover {
    background: #e2c38a;
}