/* ==========================================================
   LOGIC SANDBOX - B2B ENTERPRISE THEME (MIDTRANS/STRIPE VIBE)
   ========================================================== */

#sandbox-container {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    color: #1e293b;
    font-family: 'Inter', -apple-system, sans-serif;
    display: none; /* Sembunyi by default */
}

.sandbox-header {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 12px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sandbox-title {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.sandbox-badge {
    background-color: #eff6ff;
    color: #2563eb;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.sandbox-input-group {
    margin-bottom: 15px;
}

.sandbox-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sandbox-console-input {
    width: 100%;
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #0f172a;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 12px 15px;
    border-radius: 6px;
    transition: all 0.2s;
    resize: none;
}

.sandbox-console-input:focus {
    outline: none;
    border-color: #3b82f6;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.sandbox-select {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    color: #334155;
    font-size: 0.8rem;
    font-weight: 600;
}

.sandbox-btn-run {
    width: 100%;
    background-color: #0f172a;
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.2s;
    letter-spacing: 0.5px;
}

.sandbox-btn-run:hover {
    background-color: #334155;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.2);
}

#sandbox-result-area {
    margin-top: 20px;
    border-top: 1px dashed #cbd5e1;
    padding-top: 15px;
    display: none;
}

.sandbox-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.65rem;
    text-align: center;
    background: #ffffff;
}

.sandbox-table th {
    background: #f8fafc;
    color: #475569;
    font-weight: 800;
    padding: 8px;
    border: 1px solid #e2e8f0;
}

.sandbox-table td {
    padding: 8px;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-weight: 600;
}