/* ==========================================================
   EVERYONE ASSEMBLE
   EA AKTIVITÄTSTRACKER 1.0.0
   ========================================================== */

/* ==========================================================
   GRUNDLAGEN UND FARBEN
   ========================================================== */

.eaat-wrap{
    --eaat-bg:#020d18;
    --eaat-bg-deep:#010914;
    --eaat-panel:#04192b;
    --eaat-panel-soft:#082b45;
    --eaat-panel-light:#0b3150;
    --eaat-line:#1d5f8f;
    --eaat-line-soft:rgba(33,139,208,.16);
    --eaat-accent:#218bd0;
    --eaat-accent-light:#75d0ff;
    --eaat-text:#c4d8e4;
    --eaat-text-light:#e1f1fa;
    --eaat-muted:#8fa9bc;

    --eaat-good:#74c5a3;
    --eaat-bad:#d47f87;
    --eaat-away:#76a9d2;
    --eaat-ice:#aa91d4;
    --eaat-warning:#e0b26d;

    width:100%;
    max-width:1220px;
    margin:24px auto 40px;

    color:var(--eaat-text);

    font-family:Arial,sans-serif;
    font-size:13px;
    line-height:1.6;
}

.eaat-wrap,
.eaat-wrap *,
.eaat-wrap *:before,
.eaat-wrap *:after{
    box-sizing:border-box;
}

.eaat-wrap a{
    color:var(--eaat-accent-light);

    text-decoration:none;

    transition:
        color .2s ease,
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.eaat-wrap a:hover{
    color:var(--eaat-text-light);

    text-decoration:none;
}

/* ==========================================================
   HAUPTNAVIGATION
   ========================================================== */

.eaat-nav{
    display:flex;
    flex-wrap:wrap;
    gap:7px;

    width:100%;
    margin:0 0 16px;
    padding:9px;

    background:
        linear-gradient(
            145deg,
            rgba(8,43,69,.55),
            rgba(2,13,24,.88)
        );

    border:1px solid rgba(33,139,208,.21);
    border-left:3px solid #1674b5;

    box-shadow:0 9px 22px rgba(0,0,0,.18);
}

.eaat-nav a{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:38px;
    padding:8px 12px;

    color:var(--eaat-muted);
    background:rgba(2,13,24,.52);

    border:1px solid rgba(33,139,208,.14);
    border-left:2px solid transparent;

    font-family:Antonio,Arial,sans-serif;
    font-size:10px;
    font-weight:700;
    line-height:1.35;

    letter-spacing:.7px;
    text-align:center;
    text-transform:uppercase;
}

.eaat-nav a:hover{
    color:var(--eaat-accent-light);
    background:var(--eaat-panel-light);

    border-color:rgba(33,139,208,.34);
    border-left-color:var(--eaat-accent);
}

.eaat-nav a.is-active{
    color:var(--eaat-text-light);

    background:
        linear-gradient(
            90deg,
            rgba(33,139,208,.16),
            transparent 85%
        ),
        var(--eaat-panel-soft);

    border-color:var(--eaat-accent);
    border-left-color:var(--eaat-accent-light);

    box-shadow:inset 0 -2px var(--eaat-accent);
}

/* ==========================================================
   HERO
   ========================================================== */

.eaat-hero{
    position:relative;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;

    min-height:155px;
    margin-bottom:18px;
    padding:28px 31px;

    overflow:hidden;

    color:var(--eaat-text);

    background:
        radial-gradient(
            circle at 28% 145%,
            rgba(33,139,208,.24),
            transparent 50%
        ),
        linear-gradient(
            90deg,
            rgba(33,139,208,.08),
            transparent 55%,
            rgba(33,139,208,.045)
        ),
        var(--eaat-bg-deep);

    border:1px solid rgba(33,139,208,.31);
    border-left:5px solid var(--eaat-accent);
    border-bottom:2px solid #1674b5;

    box-shadow:
        0 18px 42px rgba(0,0,0,.31),
        inset 0 1px rgba(255,255,255,.025);
}

.eaat-hero:before{
    content:"";

    position:absolute;
    top:0;
    left:31px;

    width:230px;
    height:1px;

    background:
        linear-gradient(
            90deg,
            var(--eaat-accent-light),
            transparent
        );
}

.eaat-hero:after{
    content:"ACTIVITY DATABASE";

    position:absolute;
    right:18px;
    bottom:10px;

    color:rgba(117,208,255,.055);

    font-family:Antonio,Arial,sans-serif;
    font-size:20px;
    font-weight:700;
    line-height:1;

    letter-spacing:4px;

    pointer-events:none;
}

.eaat-hero > div:first-child{
    position:relative;
    z-index:1;

    min-width:0;
}

.eaat-kicker{
    display:block;

    margin-bottom:5px;

    color:var(--eaat-muted);

    font-family:Antonio,Arial,sans-serif;
    font-size:10px;
    font-weight:700;
    line-height:1.4;

    letter-spacing:2.3px;
    text-transform:uppercase;
}

.eaat-hero h1{
    display:block;

    margin:0;

    color:var(--eaat-accent-light);
    background:transparent;

    border:0;

    font-family:Antonio,Arial,sans-serif;
    font-size:30px;
    font-weight:700;
    line-height:1.2;

    letter-spacing:2px;
    text-align:left;
    text-transform:uppercase;

    text-shadow:0 0 20px rgba(33,139,208,.22);
}

.eaat-hero h1:before,
.eaat-hero h1:after{
    display:none;
}

.eaat-hero p,
.eaat-help{
    max-width:700px;
    margin:8px 0 0;

    color:var(--eaat-muted);

    font-size:12px;
    line-height:1.7;
}

/* ==========================================================
   META- UND FRISTKARTEN
   ========================================================== */

.eaat-cycle-meta,
.eaat-deadline,
.eaat-section-count{
    position:relative;
    z-index:1;

    flex:0 0 auto;

    min-width:165px;
    padding:10px 13px;

    color:var(--eaat-muted);
    background:rgba(2,13,24,.64);

    border:1px solid rgba(33,139,208,.20);
    border-left:3px solid rgba(33,139,208,.52);

    font-size:11px;
    line-height:1.55;
}

.eaat-cycle-meta strong,
.eaat-deadline strong,
.eaat-section-count strong{
    display:block;

    color:var(--eaat-accent-light);

    font-family:Antonio,Arial,sans-serif;
    font-size:12px;
    font-weight:700;
    line-height:1.4;

    letter-spacing:.6px;
    text-transform:uppercase;
}

/* ==========================================================
   GRUNDPANELS
   ========================================================== */

.eaat-panel,
.eaat-column{
    min-width:0;

    color:var(--eaat-text);

    background:
        linear-gradient(
            145deg,
            rgba(8,43,69,.54),
            rgba(2,13,24,.87)
        );

    border:1px solid rgba(33,139,208,.19);
    border-left:3px solid #1674b5;

    box-shadow:0 10px 25px rgba(0,0,0,.20);
}

.eaat-panel{
    padding:20px;
}

.eaat-panel--spaced{
    margin-top:18px;
}

.eaat-panel-head{
    position:relative;

    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:20px;

    margin:-20px -20px 16px;
    padding:12px 15px;

    background:
        linear-gradient(
            90deg,
            rgba(33,139,208,.12),
            transparent 72%
        ),
        var(--eaat-bg-deep);

    border-bottom:1px solid rgba(33,139,208,.19);
}

.eaat-panel-head:after{
    content:"";

    position:absolute;
    bottom:-1px;
    left:15px;

    width:64px;
    height:2px;

    background:var(--eaat-accent);
}

.eaat-panel h1,
.eaat-panel h2,
.eaat-column h2{
    margin:0;

    color:var(--eaat-accent-light);
    background:transparent;

    border:0;

    font-family:Antonio,Arial,sans-serif;
    font-weight:700;
    line-height:1.4;

    letter-spacing:.9px;
    text-transform:uppercase;

    text-shadow:none;
}

.eaat-panel h1{
    font-size:17px;
}

.eaat-panel h2,
.eaat-column h2{
    font-size:15px;
}

.eaat-panel h1:before,
.eaat-panel h1:after,
.eaat-panel h2:before,
.eaat-panel h2:after,
.eaat-column h2:before,
.eaat-column h2:after{
    display:none;
}

/* ==========================================================
   STATUSÜBERSICHT
   ========================================================== */

.eaat-status-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:13px;

    width:100%;
}

.eaat-column{
    --eaat-column-color:var(--eaat-accent);

    position:relative;

    overflow:hidden;

    border-top:3px solid var(--eaat-column-color);
    border-left-width:1px;
}

.eaat-column--stay{
    --eaat-column-color:var(--eaat-good);
}

.eaat-column--leave{
    --eaat-column-color:var(--eaat-bad);
}

.eaat-column--away{
    --eaat-column-color:var(--eaat-away);
}

.eaat-column--ice{
    --eaat-column-color:var(--eaat-ice);
}

.eaat-column > header{
    position:relative;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;

    min-height:53px;
    padding:11px 13px;

    background:
        linear-gradient(
            90deg,
            color-mix(
                in srgb,
                var(--eaat-column-color) 12%,
                transparent
            ),
            transparent 78%
        ),
        var(--eaat-bg-deep);

    border-bottom:1px solid rgba(33,139,208,.16);
}

.eaat-column > header:after{
    content:"";

    position:absolute;
    bottom:-1px;
    left:13px;

    width:52px;
    height:2px;

    background:var(--eaat-column-color);
}

.eaat-column > header h2{
    color:var(--eaat-text-light);

    font-size:14px;
}

.eaat-column > header span{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:27px;
    height:27px;
    padding:0 6px;

    color:var(--eaat-column-color);
    background:rgba(2,13,24,.75);

    border:1px solid
        color-mix(
            in srgb,
            var(--eaat-column-color) 42%,
            transparent
        );

    border-radius:50%;

    font-family:Arial,sans-serif;
    font-size:10px;
    font-weight:700;
    line-height:1;
}

/* ==========================================================
   STATUSKARTEN
   ========================================================== */

.eaat-column-list{
    display:flex;
    flex-direction:column;
    gap:8px;

    width:100%;
    max-height:520px;
    padding:10px;

    overflow-x:hidden;
    overflow-y:auto;
}

.eaat-card{
    width:100%;
    min-width:0;
    padding:10px 11px;

    color:var(--eaat-text);
    background:rgba(2,13,24,.54);

    border:1px solid rgba(33,139,208,.11);
    border-left:2px solid
        color-mix(
            in srgb,
            var(--eaat-column-color) 55%,
            transparent
        );

    transition:
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.eaat-card:hover{
    background:rgba(8,43,69,.61);

    border-color:rgba(33,139,208,.27);
    border-left-color:var(--eaat-column-color);

    transform:translateX(2px);
}

.eaat-card-main{
    display:flex;
    flex-direction:column;
    gap:4px;

    min-width:0;
}

.eaat-card strong{
    color:var(--eaat-text-light);

    font-family:Antonio,Arial,sans-serif;
    font-size:12px;
    font-weight:700;
    line-height:1.4;

    letter-spacing:.5px;
    text-transform:uppercase;

    overflow-wrap:anywhere;
}

.eaat-card small{
    color:var(--eaat-muted);

    font-size:10px;
    line-height:1.5;

    overflow-wrap:anywhere;
}

.eaat-card p{
    margin:8px 0 0;
    padding-top:7px;

    color:var(--eaat-muted);

    border-top:1px solid rgba(33,139,208,.08);

    font-size:10px;
    line-height:1.55;

    overflow-wrap:anywhere;
}

/* ==========================================================
   LEERE BEREICHE UND HINWEISE
   ========================================================== */

.eaat-empty,
.eaat-pending-note{
    display:flex;
    align-items:center;
    justify-content:center;

    min-height:76px;
    padding:14px;

    color:var(--eaat-muted);
    background:rgba(2,13,24,.43);

    border:1px dashed rgba(33,139,208,.24);

    font-size:11px;
    line-height:1.6;

    text-align:center;
}

.eaat-pending-note{
    min-height:auto;
    margin-top:14px;
}

/* ==========================================================
   BUTTONS
   ========================================================== */

.eaat-wrap .button,
.eaat-wrap button.button,
.eaat-wrap input.button{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:36px;
    padding:7px 11px;

    color:var(--eaat-accent-light);
    background:var(--eaat-bg-deep);

    border:1px solid rgba(33,139,208,.28);
    border-radius:0;

    font-family:Antonio,Arial,sans-serif;
    font-size:10px;
    font-weight:700;
    line-height:1.3;

    letter-spacing:.7px;
    text-align:center;
    text-decoration:none;
    text-transform:uppercase;

    cursor:pointer;

    transition:
        color .2s ease,
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.eaat-wrap .button:hover,
.eaat-wrap button.button:hover,
.eaat-wrap input.button:hover{
    color:var(--eaat-text-light);
    background:var(--eaat-panel-light);

    border-color:var(--eaat-accent);

    transform:translateY(-1px);
}

.eaat-bulk-actions{
    display:flex;
    flex-wrap:wrap;
    gap:8px;

    margin:17px 0 12px;
}

/* ==========================================================
   CHARAKTERVERWALTUNG
   ========================================================== */

.eaat-manage-list{
    display:flex;
    flex-direction:column;
    gap:8px;

    width:100%;
}

.eaat-manage-row{
    display:grid;
    grid-template-columns:minmax(220px,.85fr) minmax(310px,1.4fr) auto;
    gap:16px;
    align-items:center;

    width:100%;
    min-width:0;
    padding:12px 13px;

    color:var(--eaat-text);
    background:rgba(2,13,24,.52);

    border:1px solid rgba(33,139,208,.12);
    border-left:2px solid rgba(33,139,208,.40);

    transition:
        background-color .2s ease,
        border-color .2s ease;
}

.eaat-manage-row:hover{
    background:rgba(8,43,69,.46);

    border-color:rgba(33,139,208,.25);
}

.eaat-manage-character{
    display:flex;
    flex-direction:column;
    gap:4px;

    min-width:0;
}

.eaat-manage-character strong{
    color:var(--eaat-text-light);

    font-family:Antonio,Arial,sans-serif;
    font-size:12px;
    font-weight:700;
    line-height:1.4;

    letter-spacing:.5px;
    text-transform:uppercase;

    overflow-wrap:anywhere;
}

.eaat-manage-character span{
    color:var(--eaat-muted);

    font-size:10px;
    line-height:1.5;

    overflow-wrap:anywhere;
}

/* ==========================================================
   AUSWAHLFELDER
   ========================================================== */

.eaat-choice-group{
    display:flex;
    flex-wrap:wrap;
    gap:6px;

    min-width:0;
}

.eaat-choice{
    display:inline-flex;
    align-items:center;
    gap:6px;

    min-height:35px;
    padding:6px 8px;

    color:var(--eaat-muted);
    background:rgba(1,9,20,.62);

    border:1px solid rgba(33,139,208,.19);

    font-family:Antonio,Arial,sans-serif;
    font-size:10px;
    font-weight:700;
    line-height:1.35;

    letter-spacing:.4px;
    text-transform:uppercase;

    cursor:pointer;

    transition:
        color .2s ease,
        background-color .2s ease,
        border-color .2s ease;
}

.eaat-choice:hover{
    color:var(--eaat-accent-light);
    background:var(--eaat-panel-soft);

    border-color:var(--eaat-accent);
}

.eaat-choice input[type="radio"],
.eaat-choice input[type="checkbox"]{
    width:15px;
    height:15px;
    margin:0;

    accent-color:var(--eaat-accent);
}

.eaat-choice.is-disabled{
    opacity:.42;

    cursor:not-allowed;
}

.eaat-choice.is-disabled:hover{
    color:var(--eaat-muted);
    background:rgba(1,9,20,.62);

    border-color:rgba(33,139,208,.19);
}

.eaat-choice--pending{
    opacity:.72;
}

.eaat-form-submit{
    margin-top:14px;

    text-align:right;
}

/* ==========================================================
   BADGES
   ========================================================== */

.eaat-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:27px;
    padding:5px 8px;

    color:var(--eaat-muted);
    background:rgba(1,9,20,.58);

    border:1px solid rgba(33,139,208,.22);

    font-family:Antonio,Arial,sans-serif;
    font-size:10px;
    font-weight:700;
    line-height:1.3;

    letter-spacing:.6px;
    text-align:center;
    text-transform:uppercase;

    white-space:nowrap;
}

.eaat-badge--active{
    color:var(--eaat-good);

    border-color:rgba(116,197,163,.48);
}

.eaat-badge--inactive{
    color:var(--eaat-bad);

    border-color:rgba(212,127,135,.48);
}

.eaat-badge--warning{
    color:var(--eaat-warning);

    border-color:rgba(224,178,109,.48);
}

.eaat-badge--away{
    color:var(--eaat-away);

    border-color:rgba(118,169,210,.48);
}

.eaat-badge--ice{
    color:var(--eaat-ice);

    border-color:rgba(170,145,212,.48);
}

/* ==========================================================
   FORMULARE
   ========================================================== */

.eaat-ice-form{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:13px;

    width:100%;
    margin-top:18px;
}

.eaat-ice-form label{
    display:flex;
    flex-direction:column;
    gap:6px;

    min-width:0;
}

.eaat-ice-form label > span{
    color:var(--eaat-muted);

    font-family:Antonio,Arial,sans-serif;
    font-size:10px;
    font-weight:700;
    line-height:1.4;

    letter-spacing:.7px;
    text-transform:uppercase;
}

.eaat-ice-form em{
    font-family:Arial,sans-serif;
    font-size:10px;
    font-weight:400;
    font-style:normal;

    letter-spacing:0;
    text-transform:none;
}

.eaat-wrap input[type="text"],
.eaat-wrap input[type="number"],
.eaat-wrap input[type="date"],
.eaat-wrap select,
.eaat-wrap textarea,
.eaat-ice-form select,
.eaat-ice-form textarea{
    width:100%;
    min-width:0;
    min-height:41px;
    margin:0;
    padding:8px 10px;

    color:var(--eaat-text-light);
    background:var(--eaat-bg-deep);

    border:1px solid rgba(33,139,208,.25);
    border-radius:0;

    font-family:Arial,sans-serif;
    font-size:12px;
    line-height:1.45;

    outline:none;

    color-scheme:dark;

    transition:
        background-color .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.eaat-wrap textarea,
.eaat-ice-form textarea{
    min-height:95px;

    resize:vertical;
}

.eaat-wrap input:focus,
.eaat-wrap select:focus,
.eaat-wrap textarea:focus{
    background:#031426;

    border-color:var(--eaat-accent);

    box-shadow:0 0 0 1px rgba(33,139,208,.18);
}

.eaat-field-wide{
    grid-column:1 / -1;
}

/* ==========================================================
   AKTIVE EISZEITEN
   ========================================================== */

.eaat-active-ice{
    display:flex;
    flex-direction:column;
    gap:8px;

    width:100%;
}

.eaat-ice-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;

    width:100%;
    min-width:0;
    padding:12px 14px;

    color:var(--eaat-text);
    background:rgba(2,13,24,.52);

    border:1px solid rgba(33,139,208,.12);
    border-left:3px solid var(--eaat-ice);
}

.eaat-ice-row > div{
    display:flex;
    flex-direction:column;
    gap:4px;

    min-width:0;
}

.eaat-ice-row strong{
    color:var(--eaat-text-light);

    font-family:Antonio,Arial,sans-serif;
    font-size:12px;
    font-weight:700;
    line-height:1.4;

    letter-spacing:.5px;
    text-transform:uppercase;
}

.eaat-ice-row span,
.eaat-ice-row p{
    margin:0;

    color:var(--eaat-muted);

    font-size:10px;
    line-height:1.55;

    overflow-wrap:anywhere;
}

/* ==========================================================
   MELDUNGEN
   ========================================================== */

.eaat-notice{
    width:100%;
    margin:0 0 14px;
    padding:12px 14px;

    color:var(--eaat-text);
    background:
        linear-gradient(
            90deg,
            rgba(33,139,208,.09),
            transparent 75%
        ),
        var(--eaat-panel);

    border:1px solid rgba(33,139,208,.22);
    border-left:4px solid var(--eaat-accent);

    font-size:12px;
    line-height:1.65;
}

.eaat-notice--success{
    color:var(--eaat-good);

    background:
        linear-gradient(
            90deg,
            rgba(116,197,163,.09),
            transparent 75%
        ),
        var(--eaat-panel);

    border-color:rgba(116,197,163,.34);
    border-left-color:var(--eaat-good);
}

.eaat-notice--error{
    color:var(--eaat-bad);

    background:
        linear-gradient(
            90deg,
            rgba(212,127,135,.09),
            transparent 75%
        ),
        var(--eaat-panel);

    border-color:rgba(212,127,135,.34);
    border-left-color:var(--eaat-bad);
}

/* ==========================================================
   TEAMANSICHT
   ========================================================== */

.eaat-hero--team{
    align-items:center;
}

.eaat-team-tabs{
    display:flex;
    flex-direction:column;
    gap:12px;

    width:100%;
}

.eaat-tab-buttons{
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr));
    gap:7px;

    width:100%;
}

.eaat-tab-buttons button{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;

    min-width:0;
    min-height:44px;
    padding:8px 10px;

    color:var(--eaat-muted);
    background:rgba(2,13,24,.58);

    border:1px solid rgba(33,139,208,.18);
    border-left:2px solid rgba(33,139,208,.36);

    font-family:Antonio,Arial,sans-serif;
    font-size:10px;
    font-weight:700;
    line-height:1.35;

    letter-spacing:.5px;
    text-align:left;
    text-transform:uppercase;

    cursor:pointer;

    transition:
        color .2s ease,
        background-color .2s ease,
        border-color .2s ease;
}

.eaat-tab-buttons button:hover{
    color:var(--eaat-accent-light);
    background:var(--eaat-panel-soft);

    border-color:var(--eaat-accent);
}

.eaat-tab-buttons button.is-active{
    color:var(--eaat-text-light);

    background:
        linear-gradient(
            90deg,
            rgba(33,139,208,.16),
            transparent 82%
        ),
        var(--eaat-panel-soft);

    border-color:var(--eaat-accent);
    border-left-color:var(--eaat-accent-light);

    box-shadow:inset 0 -2px var(--eaat-accent);
}

.eaat-tab-buttons button span{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:23px;
    height:23px;
    padding:0 5px;

    color:var(--eaat-accent-light);
    background:rgba(1,9,20,.72);

    border:1px solid rgba(33,139,208,.20);
    border-radius:50%;

    font-family:Arial,sans-serif;
    font-size:10px;
    font-weight:700;
    line-height:1;
}

.eaat-tab-panel{
    display:none;
}

.eaat-tab-panel.is-active{
    display:block;
}

/* ==========================================================
   TABELLEN
   ========================================================== */

.eaat-table-wrap{
    width:100%;
    margin-top:17px;

    overflow-x:auto;
    overflow-y:hidden;
}

.eaat-table{
    width:100%;
    min-width:720px;

    border-collapse:collapse;

    color:var(--eaat-text);
    background:rgba(2,13,24,.42);
}

.eaat-table th,
.eaat-table td{
    padding:9px 10px;

    border:1px solid rgba(33,139,208,.13);

    text-align:left;
    vertical-align:top;
}

.eaat-table th{
    color:var(--eaat-accent-light);
    background:var(--eaat-bg-deep);

    font-family:Antonio,Arial,sans-serif;
    font-size:10px;
    font-weight:700;
    line-height:1.4;

    letter-spacing:.6px;
    text-transform:uppercase;
}

.eaat-table td{
    color:var(--eaat-muted);

    font-size:10px;
    line-height:1.55;
}

.eaat-table tr:nth-child(even) td{
    background:rgba(8,43,69,.17);
}

.eaat-table tr:hover td{
    background:rgba(8,43,69,.34);
}

.eaat-empty-cell{
    padding:24px !important;

    color:var(--eaat-muted) !important;

    text-align:center !important;
}

/* ==========================================================
   GLOBALE STARTSEITENMELDUNG
   {$eaat_whitelist_notice}
   ========================================================== */

.eaat-whitelist-home{
    --eaat-home-bg:#020d18;
    --eaat-home-bg-deep:#010914;
    --eaat-home-panel:#04192b;
    --eaat-home-panel-soft:#082b45;
    --eaat-home-line:#1d5f8f;
    --eaat-home-accent:#218bd0;
    --eaat-home-accent-light:#75d0ff;
    --eaat-home-text:#c4d8e4;
    --eaat-home-text-light:#e1f1fa;
    --eaat-home-muted:#8fa9bc;

    position:relative;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;

    width:100%;
    margin:18px 0;
    padding:17px 20px;

    overflow:hidden;

    color:var(--eaat-home-text);

    background:
        linear-gradient(
            90deg,
            rgba(33,139,208,.12),
            transparent 70%
        ),
        linear-gradient(
            145deg,
            var(--eaat-home-panel-soft),
            var(--eaat-home-bg)
        );

    border:1px solid rgba(33,139,208,.24);
    border-left:4px solid var(--eaat-home-accent);

    box-shadow:0 12px 29px rgba(0,0,0,.21);

    font-family:Arial,sans-serif;
}

.eaat-whitelist-home,
.eaat-whitelist-home *,
.eaat-whitelist-home *:before,
.eaat-whitelist-home *:after{
    box-sizing:border-box;
}

.eaat-whitelist-home:after{
    content:"WHITELIST";

    position:absolute;
    right:16px;
    bottom:7px;

    color:rgba(117,208,255,.05);

    font-family:Antonio,Arial,sans-serif;
    font-size:18px;
    font-weight:700;

    letter-spacing:3px;

    pointer-events:none;
}

.eaat-whitelist-home__text{
    position:relative;
    z-index:1;

    display:flex;
    flex-direction:column;
    gap:3px;

    min-width:0;
}

.eaat-whitelist-home__kicker{
    color:var(--eaat-home-muted);

    font-family:Antonio,Arial,sans-serif;
    font-size:10px;
    font-weight:700;
    line-height:1.35;

    letter-spacing:1.8px;
    text-transform:uppercase;
}

.eaat-whitelist-home__text strong{
    color:var(--eaat-home-accent-light);

    font-family:Antonio,Arial,sans-serif;
    font-size:17px;
    font-weight:700;
    line-height:1.4;

    letter-spacing:.8px;
    text-transform:uppercase;
}

.eaat-whitelist-home__text small{
    color:var(--eaat-home-muted);

    font-size:10px;
    line-height:1.5;
}

.eaat-whitelist-home__links{
    position:relative;
    z-index:1;

    display:flex;
    flex-wrap:wrap;
    justify-content:flex-end;
    gap:7px;

    flex:0 0 auto;
}

.eaat-whitelist-home__links a{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:37px;
    padding:7px 11px;

    color:var(--eaat-home-accent-light);
    background:var(--eaat-home-bg-deep);

    border:1px solid rgba(33,139,208,.26);

    font-family:Antonio,Arial,sans-serif;
    font-size:10px;
    font-weight:700;
    line-height:1.3;

    letter-spacing:.7px;
    text-align:center;
    text-decoration:none;
    text-transform:uppercase;

    transition:
        color .2s ease,
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.eaat-whitelist-home__links a:hover{
    color:var(--eaat-home-text-light);
    background:var(--eaat-home-panel-soft);

    border-color:var(--eaat-home-accent);

    transform:translateY(-1px);
}

.eaat-whitelist-home__links .eaat-whitelist-home__primary{
    color:var(--eaat-home-bg-deep);
    background:var(--eaat-home-accent-light);

    border-color:var(--eaat-home-accent-light);
}

.eaat-whitelist-home__links .eaat-whitelist-home__primary:hover{
    color:var(--eaat-home-bg-deep);
    background:#a7e4ff;

    border-color:#a7e4ff;
}

/* ==========================================================
   BOARDWEITE EISZEITÜBERSICHT
   ========================================================== */

.eaat-all-ice{
    display:flex;
    flex-direction:column;
    gap:9px;

    width:100%;
}

.eaat-ice-public-row{
    display:grid;
    grid-template-columns:
        minmax(180px,.8fr)
        minmax(220px,1fr)
        minmax(190px,.8fr);
    gap:16px;
    align-items:start;

    width:100%;
    min-width:0;
    padding:14px;

    color:var(--eaat-text);
    background:
        linear-gradient(
            145deg,
            rgba(8,43,69,.44),
            rgba(2,13,24,.70)
        );

    border:1px solid rgba(33,139,208,.13);
    border-left:3px solid var(--eaat-ice);

    transition:
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.eaat-ice-public-row:hover{
    background:
        linear-gradient(
            145deg,
            rgba(11,49,80,.57),
            rgba(2,13,24,.74)
        );

    border-color:rgba(170,145,212,.32);

    transform:translateY(-1px);
}

.eaat-ice-public-character,
.eaat-ice-public-player,
.eaat-ice-public-period,
.eaat-ice-public-reason{
    display:flex;
    flex-direction:column;
    gap:4px;

    min-width:0;
}

.eaat-ice-public-label{
    color:var(--eaat-ice);

    font-family:Antonio,Arial,sans-serif;
    font-size:10px;
    font-weight:700;
    line-height:1.4;

    letter-spacing:.7px;
    text-transform:uppercase;
}

.eaat-ice-public-character strong,
.eaat-ice-public-player strong,
.eaat-ice-public-period strong{
    color:var(--eaat-text-light);

    font-size:11px;
    line-height:1.5;

    overflow-wrap:anywhere;
}

.eaat-ice-public-period small,
.eaat-ice-public-player small{
    color:var(--eaat-muted);

    font-size:10px;
    line-height:1.5;

    overflow-wrap:anywhere;
}

.eaat-ice-public-reason{
    grid-column:1 / -1;

    padding-top:10px;

    border-top:1px solid rgba(33,139,208,.10);
}

.eaat-ice-public-reason p{
    margin:0;

    color:var(--eaat-muted);

    font-size:10px;
    line-height:1.6;

    overflow-wrap:anywhere;
}

/* ==========================================================
   SCROLLBARS
   ========================================================== */

.eaat-column-list,
.eaat-table-wrap,
.eaat-wrap textarea,
.eaat-wrap select{
    scrollbar-width:thin;
    scrollbar-color:#1674b5 var(--eaat-bg-deep);
}

.eaat-column-list::-webkit-scrollbar,
.eaat-table-wrap::-webkit-scrollbar,
.eaat-wrap textarea::-webkit-scrollbar,
.eaat-wrap select::-webkit-scrollbar{
    width:7px;
    height:7px;
}

.eaat-column-list::-webkit-scrollbar-track,
.eaat-table-wrap::-webkit-scrollbar-track,
.eaat-wrap textarea::-webkit-scrollbar-track,
.eaat-wrap select::-webkit-scrollbar-track{
    background:var(--eaat-bg-deep);
}

.eaat-column-list::-webkit-scrollbar-thumb,
.eaat-table-wrap::-webkit-scrollbar-thumb,
.eaat-wrap textarea::-webkit-scrollbar-thumb,
.eaat-wrap select::-webkit-scrollbar-thumb{
    background:#1674b5;

    border:2px solid var(--eaat-bg-deep);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media screen and (max-width:1050px){

    .eaat-status-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .eaat-tab-buttons{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }

    .eaat-manage-row{
        grid-template-columns:1fr;
        gap:10px;
    }

    .eaat-form-submit{
        text-align:left;
    }
}

@media screen and (max-width:900px){

    .eaat-ice-public-row{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .eaat-ice-public-period{
        grid-column:1 / -1;
    }
}

@media screen and (max-width:700px){

    .eaat-wrap{
        margin:14px auto 30px;
    }

    .eaat-hero{
        align-items:flex-start;
        flex-direction:column;

        min-height:125px;
        padding:22px 15px;
    }

    .eaat-hero:after{
        display:none;
    }

    .eaat-hero h1{
        font-size:24px;
    }

    .eaat-cycle-meta,
    .eaat-deadline,
    .eaat-section-count{
        width:100%;
        min-width:0;
    }

    .eaat-panel{
        padding:15px;
    }

    .eaat-panel-head{
        align-items:flex-start;
        flex-direction:column;
        gap:5px;

        margin:-15px -15px 14px;
    }

    .eaat-status-grid{
        grid-template-columns:1fr;
    }

    .eaat-tab-buttons{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .eaat-ice-form{
        grid-template-columns:1fr;
    }

    .eaat-field-wide{
        grid-column:auto;
    }

    .eaat-choice-group{
        display:grid;
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .eaat-nav{
        display:grid;
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .eaat-ice-row{
        align-items:stretch;
        flex-direction:column;
    }

    .eaat-whitelist-home{
        align-items:stretch;
        flex-direction:column;
    }

    .eaat-whitelist-home:after{
        display:none;
    }

    .eaat-whitelist-home__links{
        justify-content:flex-start;
    }
}

@media screen and (max-width:600px){

    .eaat-ice-public-row{
        grid-template-columns:1fr;
    }

    .eaat-ice-public-period{
        grid-column:auto;
    }

    .eaat-ice-public-reason{
        grid-column:auto;
    }
}

@media screen and (max-width:460px){

    .eaat-nav,
    .eaat-tab-buttons,
    .eaat-choice-group{
        grid-template-columns:1fr;
    }

    .eaat-nav a,
    .eaat-choice{
        justify-content:space-between;
    }

    .eaat-bulk-actions{
        flex-direction:column;
    }

    .eaat-bulk-actions .button{
        width:100%;
    }

    .eaat-form-submit .button{
        width:100%;
    }

    .eaat-whitelist-home__links{
        flex-direction:column;
    }

    .eaat-whitelist-home__links a{
        width:100%;
    }
}