/**
 * Terminal Brutalism Theme
 * Dark backgrounds, amber accents, high contrast white text
 *
 * This file contains all Terminal Brutalism overrides.
 * Include AFTER main.css to ensure proper cascade.
 */

/* =============================================================================
   Modal Dialogs
   ============================================================================= */

.modal {
    background: rgba(0, 0, 0, 0.85);
}

.modal-content {
    background: #08090b;
    border: 2px solid #f5a623;
    border-radius: 4px;
    box-shadow: 0 0 40px rgba(245, 166, 35, 0.15);
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #2a2d32;
    background: linear-gradient(180deg, #0d0e10 0%, #08090b 100%);
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #f5a623;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'IBM Plex Mono', monospace;
}

.close-modal {
    color: #f5a623;
    opacity: 0.7;
}

.close-modal:hover {
    opacity: 1;
    color: #ffffff;
}

.modal-body {
    padding: 24px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
}

.modal-footer {
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid #2a2d32;
    background: #0d0e10;
}

.modal-footer .btn,
.modal-footer button {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 20px;
    border-radius: 4px;
}

.modal-footer .btn-primary,
.modal-footer button[type="submit"] {
    background: #f5a623;
    color: #08090b;
    border: 1px solid #f5a623;
}

.modal-footer .btn-primary:hover,
.modal-footer button[type="submit"]:hover {
    background: #ffc95c;
    border-color: #ffc95c;
}

.modal-footer .btn-secondary,
.modal-footer button[type="button"] {
    background: transparent;
    color: #ffffff;
    border: 1px solid #3a3d42;
}

.modal-footer .btn-secondary:hover,
.modal-footer button[type="button"]:hover {
    border-color: #f5a623;
    color: #f5a623;
}

/* =============================================================================
   Toast Notifications
   ============================================================================= */

.toast-container {
    bottom: 24px;
    right: 24px;
    gap: 12px;
}

.toast {
    padding: 16px 20px;
    background: #08090b;
    border: 1px solid #2a2d32;
    border-left: 4px solid #f5a623;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    min-width: 280px;
}

.toast.success {
    border-left-color: #22c55e;
}

.toast.success::before {
    content: '✓ ';
    color: #22c55e;
    font-weight: bold;
}

.toast.error {
    border-left-color: #ef4444;
}

.toast.error::before {
    content: '✗ ';
    color: #ef4444;
    font-weight: bold;
}

.toast.warning {
    border-left-color: #f5a623;
}

.toast.warning::before {
    content: '⚠ ';
    color: #f5a623;
    font-weight: bold;
}

.toast.info {
    border-left-color: #3b82f6;
}

.toast.info::before {
    content: 'ℹ ';
    color: #3b82f6;
    font-weight: bold;
}
