/* =========================================================
   ATLAS V6 — Pre-Flight Order Preview Modal Styles
   ========================================================= */

.trade-confirm-box {
    max-width: 480px;
    width: 90%;
    padding: 2rem;
    border-radius: 16px;
    background: #0f172a;
    border: 1px solid rgba(56, 189, 248, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    text-align: left;
}

.confirm-header-ticket {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.2rem;
}

.confirm-ticket-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.confirm-direction-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.9rem;
}

.confirm-direction-badge.buy {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.4);
}

.confirm-direction-badge.sell {
    background: rgba(248, 113, 113, 0.2);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.4);
}

.confirm-details-table {
    width: 100%;
    margin-bottom: 1.25rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.confirm-details-table tr {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.confirm-details-table td {
    padding: 0.5rem 0;
}

.confirm-details-table td:last-child {
    text-align: right;
    font-weight: 700;
}

.confirm-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.88rem;
    user-select: none;
}

.confirm-checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--neon-blue);
    cursor: pointer;
}

.confirm-modal-actions {
    display: flex;
    gap: 0.85rem;
}

.confirm-modal-actions .btn {
    flex: 1;
    padding: 0.75rem;
    font-weight: 700;
    font-size: 0.95rem;
}
