/*
=====================================
2026 FLOAT HUNT - STATUS PAGE CSS -- v11
=====================================
*/
* {
    box-sizing: border-box;
}

:root {
    --navy: #002244;
    --green: #69BE28;
    --gray: #A5ACAF;
    --bg: #F4F6F7;
    --white: #FFFFFF;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.status-page {
    display: flex;
    flex-direction: column;
    max-width: 1100px;
    margin: auto;
    gap: 20px;
    padding: 0px;
}

.table-column {
    flex: 1;
    width: 100%;
}

.card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 34, 68, 0.08);
    padding: 24px 24px 24px 24px;
}

.table-card {
    overflow-x: auto;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
}

#lastUpdated {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--navy);
    opacity: 0.75;
    background: #e6eaed;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 14px;
}

.tab-button {
    display: flex;
    align-items: center;
    border: none;
    font-size: 14px;
    color: var(--gray);
    background: #e6eaed;
    padding: 6px 12px;
    border-radius: 12px;
    border: 2px solid var(--gray);
}

.tab-button.active {
    background: var(--navy);
    font-weight: bold;
    border: 2px solid var(--green);
    color: var(--white);
}

.tab-button:not(.active):hover {
    background: #dfe4e8;
    border: 2px solid var(--green);
    color: var(--navy);
}

.float-tip {
    font-size: 14px;
    color: var(--navy);
    text-align: center;
    margin: 0 auto;
}


table {
    width: 100%;
    min-width: 600px;
    border-collapse: separate;
    border-spacing: 0 6px;
}

th {
    text-align: left;
    padding: 10px 10px;
    background: #e6eaed;
    font-size: 14px;
    color: var(--navy);
}

th:first-child {
    border-top-left-radius: 12px;
}

th:last-child {
    border-top-right-radius: 12px;
}

td {
    background: var(--white);
    padding: 10px 10px;
    vertical-align: middle;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    /* word-break: break-word;
    max-width: 200px; */
    line-height: 1.4;
}

th:nth-child(2),
td:nth-child(2) {
    width: 60px;
    text-align: center;
}

th:nth-child(4),
td:nth-child(4) {
    min-width: 170px;
}

th:nth-child(5),
td:nth-child(5) {
    width: 160px;
}

tr.found{
    border-left: 4px solid var(--green);
    background-color: transparent;
}

.table-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    gap: 10px;
    min-width: 600px;
}

.table-footer td {
    background: #e6eaed;
    padding: 10px;
    text-align: center;
    opacity: 0.75;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.footer-tip {
    white-space: nowrap;
    font-size: 12px;
    opacity: 0.8;
}


.status-icon-cell {
    text-align: center;
    vertical-align: middle;
    width: 12px;
}

.status-cell-inner {
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.status-icon-cell.status-found {
    border-left: 3px solid var(--green);
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 1,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
}

.status-found {
    background: transparent;
    color: var(--green);
}

.sponsor-header {
    text-align: center;
}

.sponsor-cell {
    text-align: center;
    vertical-align: middle;
    white-space: normal;
}

.sponsor-name {
    display: block;
    max-width: 80px;
    margin: 4px auto 0;
    font-size: 10px;
    line-height: 1.2;
    font-weight: bold;
    color: var(--gray);
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
}

.sponsor-logo {
    width: 40px;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
}

.clue-cell {
    color: var(--navy);
}

.clue-text {
    color: var(--navy);
}

.clue-found {
    text-decoration: line-through;
    color: var(--gray);
}

.clue-hidden {
    font-style: italic;
    color: var(--gray);

}

.clue-toggle {
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    color: var(--navy);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: tighten;
    margin-left: 2px;
    margin-top: 0px;
    display: inline-block;
    cursor: pointer;
    vertical-align: baseline;
}

.clue-toggle:hover {
    opacity: 1;
    color: var(--green);
}

#releasedHeader {
    cursor: default;
}

.release-date {
    margin-bottom: 2px;
    font-weight: 600;
    color: var(--navy);
    opacity: 0.85;
}

.released-label {
    display: inline-flex;
    align-items: center;
    gap: 4px;

}

.sort-icon {
    opacity: 0.65;
    line-height: 1;
    cursor: pointer;
}

.sort-icon:hover {
    color: var(--green);
    opacity: 1;
}

#releasedHeader .material-symbols-outlined:hover {
    color: var(--green);
}

#releasedHeader .material-symbols-outlined {
    /* font-size: 16px; */
    vertical-align: middle;
    margin-left: 4px;
    cursor: pointer;
    transition: color 0.15s ease;
    align-content: center;
}

.finder-header {
    text-align: left;
}

.finder {
    text-align: left;
    font-size: 14px;
    color: var(--navy);
}

.finder-name {
    font-weight: bold;
    display: block;
}

.finder-location {
    font-weight: 500;
    letter-spacing: 0.15px;
    display: block;
}

.finder-date {
    display: block;
}

.finder-empty {
    color: var(--gray);
    font-style: italic;
}

/* ===== STATUS BAR ===== */

.status-bar {
    background: var(--navy);
    color: white;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 16px;
    justify-content: center;
    align-items: center;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 600px;

}

.status-logo {
    height: 64px;
    opacity: 0.85;
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-55%);
}

.stat {
    text-align: center;
    position: relative;
    min-width: 70px;
}

.stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.25);
}

.status-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    letter-spacing: 0.8px;
    color: var(--green);
    text-transform: uppercase;
    margin-top: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}


.status-notes {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.info-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
}

.info-chip .material-symbols-outlined {
    font-size: 18px;
    color: #7BC143;
}

.refresh-note {
    font-size: 12px;
    opacity: 0.75;
}

@media (max-width: 640px) {
    .status-page {
        flex-direction: column;
    }

    .table-column {
        width: 100%;
    }


}

