/* Tryout-specific styles — shared base ada di shared-card.css */

/* ── DIVIDER ── */
.divider {
    height: 1px;
    background: #e8f0eb;
    margin: 0 0 24px;
}

/* ── READONLY INPUT ── */
.field input[readonly] {
    background: #f0f4f1;
    color: #6b7c74;
    cursor: default;
}

/* ── BUTTON ── */
.btn-mulai {
    width: 100%;
    padding: 13px;
    background: #1b4332;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.18s, transform 0.1s;
    letter-spacing: 0.2px;
    margin-top: 4px;
}
.btn-mulai:hover:not(:disabled)  { background: #2d6a4f; }
.btn-mulai:active:not(:disabled) { transform: scale(0.98); }
.btn-mulai:disabled {
    background: #9dbfae;
    cursor: not-allowed;
}
.btn-mulai--secondary {
    margin-top: 10px;
    background: #5f6368;
}
.btn-mulai--secondary:hover:not(:disabled) { background: #4a4e52; }

/* ── Fullscreen warning banner ── */
.fs-warning-banner {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #b45309;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 9999;
}
.fs-warning-banner button {
    background: #fff;
    color: #b45309;
    border: none;
    border-radius: 6px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}
.fs-warning-banner button:hover { background: #fef3c7; }