
/* ============================================================
   TIPNIX READY
   ============================================================ */

.ready-dashboard-tools {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 28px;
}

.ready-dashboard-tool {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 16px;
    border: 1px solid #e5e8ec;
    border-radius: 14px;
    background: #fff;
    text-decoration: none;
    transition:
        transform .15s ease,
        box-shadow .15s ease,
        border-color .15s ease;
}

.ready-dashboard-tool:hover {
    transform: translateY(-1px);
    border-color: #cfd4db;
    box-shadow: 0 8px 22px rgba(16,24,40,.07);
}

.ready-dashboard-tool span {
    color: #777e88;
    font-size: 12px;
    font-weight: 700;
}

.ready-dashboard-tool strong {
    color: #17191c;
    font-size: 14px;
}

.ready-closing-section {
    margin: 0 0 30px;
}

.ready-section-title h2 {
    margin-bottom: 12px;
}

.ready-closing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.ready-closing-bet {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid #e5e8ec;
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
}

.ready-closing-bet span {
    color: #a05d00;
    font-size: 12px;
    font-weight: 700;
}

.ready-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.ready-result {
    display: inline-flex;
    padding: 4px 9px;
    border-radius: 999px;
    background: #f1f2f4;
    font-size: 12px;
    font-weight: 700;
}

.ready-result-gewonnen {
    color: #137a4b;
    background: #ecf8f1;
}

.ready-result-verloren {
    color: #b42318;
    background: #fff1f0;
}

.ready-result-offen {
    color: #805800;
    background: #fff7e8;
}

.ready-empty {
    padding: 30px;
    text-align: center;
}

.ready-empty h2 {
    margin-bottom: 8px;
}

.ready-invite-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr);
    gap: 18px;
}

.ready-copy-box {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ready-copy-box input {
    flex: 1;
    margin: 0;
}

.ready-qr-card {
    text-align: center;
}

.ready-qr {
    width: min(220px, 100%);
    height: auto;
    padding: 10px;
    border: 1px solid #e5e8ec;
    border-radius: 14px;
    background: #fff;
}

.ready-template-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.ready-template-card {
    color: inherit;
    text-decoration: none;
}

.ready-template-card p {
    color: #6f7680;
}

.ready-template-options {
    margin: 14px 0;
    font-size: 13px;
    font-weight: 700;
}

.ready-template-action {
    font-weight: 700;
}

.ready-timeline {
    padding: 12px 24px;
}

.ready-activity-item {
    position: relative;
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #eceef1;
}

.ready-activity-item:last-child {
    border-bottom: 0;
}

.ready-activity-dot {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    margin-top: 7px;
    border-radius: 50%;
    background: #17191c;
}

.ready-temp-password {
    margin-bottom: 18px;
    border-color: #c3e8d2;
}

.ready-password-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.ready-password-box code {
    flex: 1;
    padding: 13px;
    border-radius: 10px;
    background: #f5f6f7;
    font-size: 16px;
    font-weight: 700;
    user-select: all;
}

.ready-error-page {
    margin-top: 60px;
    text-align: center;
}

.ready-error-code {
    color: #aeb3ba;
    font-size: 58px;
    font-weight: 850;
    letter-spacing: -.06em;
}

.ready-danger-page {
    border-color: #f2c4c0;
}

.ready-menu-section-label {
    padding: 8px 11px 4px;
    color: #959ba4;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.ready-menu-divider {
    height: 1px;
    margin: 6px 4px;
    background: #eceef1;
}

@media (max-width: 850px) {
    .ready-dashboard-tools {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ready-closing-grid {
        grid-template-columns: 1fr;
    }

    .ready-invite-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .ready-dashboard-tools {
        grid-template-columns: 1fr;
    }

    .ready-template-grid {
        grid-template-columns: 1fr;
    }

    .ready-copy-box {
        align-items: stretch;
        flex-direction: column;
    }

    .ready-password-box {
        align-items: stretch;
        flex-direction: column;
    }
}
