/* ===== TEDxTaiz Badge Generator Pro - Styles ===== */

:root {
    /* TEDx Colors */
    --tedx-red: #eb0028;
    --tedx-red-dark: #c70022;
    --tedx-red-light: #ff1a3d;
    --tedx-black: #1a1a1a;
    --tedx-black-light: #2d2d2d;
    --tedx-white: #ffffff;
    --tedx-gray: #888888;
    --tedx-gray-light: #cccccc;
    --tedx-gray-dark: #444444;

    /* Semantic Colors */
    --bg-primary: #0d0d0d;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #252525;
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --text-muted: #666666;
    --border-color: #333333;
    --success: #00c853;
    --warning: #ffc107;
    --danger: #ff5252;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.4s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(235, 0, 40, 0.3);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 14px;
}

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== App Container ===== */
.app {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

/* ===== Header ===== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.5rem;
    font-weight: 800;
}

.logo .tedx {
    color: var(--tedx-red);
}

.logo .taiz {
    color: var(--text-primary);
}

.logo .badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-right: var(--space-md);
    padding-right: var(--space-md);
    border-right: 2px solid var(--border-color);
}

.header-actions {
    display: flex;
    gap: var(--space-sm);
}

/* ===== Main Content ===== */
.main-content {
    display: grid;
    grid-template-columns: 280px 1fr 320px;
    flex: 1;
    gap: 0;
    overflow: hidden;
    height: calc(100vh - 130px);
}

/* ===== Sidebar ===== */
.sidebar {
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    padding: var(--space-md);
    overflow-y: auto;
    height: 100%;
}

.panel {
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
}

.panel-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--tedx-red);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* ===== Template Uploads ===== */
.template-uploads {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.upload-box {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    overflow: hidden;
}

.upload-box:hover {
    border-color: var(--tedx-red);
}

.upload-box.has-file {
    border-color: var(--success);
    border-style: solid;
}

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-md);
    cursor: pointer;
    text-align: center;
}

.upload-icon {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
}

.upload-text {
    font-weight: 600;
    color: var(--text-primary);
}

.upload-status {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

.upload-box.has-file .upload-status {
    color: var(--success);
}

/* ===== Element Tabs ===== */
.element-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-bottom: var(--space-md);
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    padding: 4px;
}

.element-tab {
    padding: var(--space-sm);
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.element-tab:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

.element-tab.active {
    background: var(--tedx-red);
    color: var(--text-primary);
}

/* ===== Element Settings ===== */
.element-settings {
    display: none;
}

.element-settings.active {
    display: block;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.setting-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-color);
}

.setting-row:last-child {
    border-bottom: none;
}

.setting-row label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.setting-input {
    width: 90px;
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.85rem;
    text-align: center;
}

.setting-input:focus {
    outline: none;
    border-color: var(--tedx-red);
}

.setting-color {
    width: 50px;
    height: 30px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    background: transparent;
}

.setting-checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--tedx-red);
    cursor: pointer;
}

/* ===== Layers Panel ===== */
.layers-panel {
    max-height: 400px;
    display: flex;
    flex-direction: column;
}

.layers-toolbar {
    display: flex;
    gap: 4px;
    padding: var(--space-sm);
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
}

.layer-tool-btn {
    flex: 1;
    padding: var(--space-sm);
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.layer-tool-btn:hover {
    border-color: var(--tedx-red);
    background: var(--tedx-red);
}

.layers-list {
    flex: 1;
    overflow-y: auto;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    padding: 4px;
    min-height: 100px;
    max-height: 150px;
}

.layer-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    margin-bottom: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.layer-item:hover {
    background: var(--bg-tertiary);
}

.layer-item.selected {
    border-color: var(--tedx-red);
    background: var(--bg-tertiary);
}

.layer-item.hidden {
    opacity: 0.5;
}

.layer-visibility {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.layer-visibility:hover {
    color: var(--tedx-red);
}

.layer-item.hidden .layer-visibility {
    color: var(--text-muted);
}

.layer-icon {
    width: 32px;
    height: 32px;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    overflow: hidden;
    color: var(--tedx-red);
}

.layer-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.layer-name {
    flex: 1;
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.layer-type {
    font-size: 0.65rem;
    color: var(--text-muted);
    background: var(--bg-primary);
    padding: 2px 6px;
    border-radius: 10px;
}

.layer-properties {
    margin-top: var(--space-sm);
    padding: var(--space-sm);
    background: var(--bg-primary);
    border-radius: var(--radius-md);
}

.layer-properties h4 {
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
    color: var(--tedx-red);
}

.opacity-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--bg-tertiary);
    border-radius: 2px;
}

.opacity-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--tedx-red);
    border-radius: 50%;
    cursor: pointer;
}

#opacityValue {
    font-size: 0.75rem;
    color: var(--text-secondary);
    min-width: 35px;
}

/* ===== Preview Area ===== */
.preview-area {
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
    padding: var(--space-md);
    overflow: hidden;
    height: 100%;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.preview-header h2 {
    font-size: 1.2rem;
    font-weight: 700;
}

.preview-controls {
    display: flex;
    gap: 4px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: 4px;
}

.preview-btn {
    padding: var(--space-sm) var(--space-md);
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.preview-btn.active {
    background: var(--tedx-red);
    color: var(--text-primary);
}

/* ===== Zoom Toolbar ===== */
.zoom-toolbar {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
}

.zoom-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.zoom-btn:hover {
    border-color: var(--tedx-red);
    background: var(--tedx-red);
}

.zoom-slider {
    flex: 1;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--bg-primary);
    border-radius: 3px;
    cursor: pointer;
}

.zoom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--tedx-red);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.zoom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.zoom-percent {
    min-width: 50px;
    text-align: center;
    font-weight: 700;
    color: var(--tedx-red);
    font-size: 0.9rem;
}

.zoom-fit {
    font-size: 0.8rem;
}

/* ===== Canvas Container with Scroll ===== */
.preview-canvas-container {
    flex: 1;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: auto;
    min-height: 300px;
}

.canvas-wrapper {
    display: inline-block;
    transform-origin: 0 0;
    transition: transform 0.1s ease;
    min-width: 100%;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#previewCanvas {
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.preview-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-secondary);
    font-size: 1.1rem;
    z-index: 10;
}

.preview-overlay.hidden {
    display: none;
}

.preview-info {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ===== Data Panel ===== */
.data-panel {
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    height: 100%;
}

.data-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-bottom: var(--space-md);
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    padding: 4px;
}

.data-tab {
    padding: var(--space-sm) var(--space-md);
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.data-tab.active {
    background: var(--tedx-red);
    color: var(--text-primary);
}

.data-content {
    display: none;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: var(--space-md);
}

.data-content.active {
    display: block;
}

/* ===== Form Elements ===== */
.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
}

.form-input {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--tedx-red);
    box-shadow: 0 0 0 3px rgba(235, 0, 40, 0.1);
}

.file-input {
    position: relative;
}

.file-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.file-label:hover {
    border-color: var(--tedx-red);
}

.file-label span:first-child {
    color: var(--text-secondary);
    font-size: 0.85rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-icon {
    font-size: 1.2rem;
}

.help-text {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

/* ===== Guest List ===== */
.guest-list-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.guest-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.guest-list-header h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.guest-count {
    background: var(--tedx-red);
    color: var(--text-primary);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.guest-list {
    flex: 1;
    overflow-y: auto;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    min-height: 150px;
    max-height: 250px;
}

.empty-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-muted);
}

.empty-list span {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.guest-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm);
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-xs);
}

.guest-item:last-child {
    margin-bottom: 0;
}

.guest-info {
    flex: 1;
    overflow: hidden;
}

.guest-name {
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.guest-title {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.guest-actions {
    display: flex;
    gap: 4px;
}

.guest-action-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.guest-action-btn:hover {
    background: var(--tedx-red);
}

.guest-action-btn.delete:hover {
    background: var(--danger);
}

/* ===== Buttons ===== */
.btn {
    padding: var(--space-sm) var(--space-md);
    border: none;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--tedx-red);
    color: var(--text-primary);
}

.btn-primary:hover:not(:disabled) {
    background: var(--tedx-red-dark);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover:not(:disabled) {
    border-color: var(--tedx-red);
    color: var(--tedx-red);
}

.btn-success {
    background: var(--success);
    color: var(--text-primary);
}

.btn-success:hover:not(:disabled) {
    filter: brightness(1.1);
}

.btn-danger {
    background: var(--danger);
    color: var(--text-primary);
}

.btn-full {
    width: 100%;
    margin-bottom: var(--space-sm);
}

.btn-large {
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
}

/* ===== Footer ===== */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-xl);
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.progress-section {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-left: var(--space-xl);
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: var(--bg-primary);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--tedx-red), var(--tedx-red-light));
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text {
    font-weight: 600;
    color: var(--tedx-red);
    min-width: 80px;
    text-align: center;
}

.footer-actions {
    display: flex;
    gap: var(--space-md);
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--tedx-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--tedx-red-light);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--tedx-red) var(--bg-primary);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .main-content {
        grid-template-columns: 250px 1fr 280px;
    }
}

@media (max-width: 992px) {
    .main-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .sidebar,
    .data-panel {
        border: none;
        border-bottom: 1px solid var(--border-color);
        max-height: none;
    }

    .preview-area {
        order: -1;
        min-height: 300px;
    }
}

/* ===== Custom Modal System ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    max-width: 420px;
    width: 90%;
    text-align: center;
    transform: scale(0.8) translateY(-20px);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 2rem;
}

.modal-icon.success {
    background: rgba(0, 200, 83, 0.15);
    color: var(--success);
}

.modal-icon.error {
    background: rgba(255, 82, 82, 0.15);
    color: var(--danger);
}

.modal-icon.warning {
    background: rgba(255, 193, 7, 0.15);
    color: var(--warning);
}

.modal-icon.info {
    background: rgba(235, 0, 40, 0.15);
    color: var(--tedx-red);
}

.modal-icon.guide {
    background: rgba(100, 180, 255, 0.15);
    color: #64b4ff;
}

.modal-hint.guide {
    color: #64b4ff;
    background: rgba(100, 180, 255, 0.1);
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.modal-message {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.modal-hint {
    font-size: 0.85rem;
    color: var(--tedx-red);
    background: rgba(235, 0, 40, 0.1);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    display: none;
}

.modal-hint.visible {
    display: block;
}

.modal-hint.visible.guide {
    color: #64b4ff;
    background: rgba(100, 180, 255, 0.1);
}

.modal-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
}

.modal-btn {
    padding: var(--space-sm) var(--space-xl);
    border: none;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    min-width: 100px;
}

.modal-btn-primary {
    background: var(--tedx-red);
    color: var(--text-primary);
}

.modal-btn-primary:hover {
    background: var(--tedx-red-dark);
}

.modal-btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.modal-btn-secondary:hover {
    border-color: var(--tedx-red);
}