/* Export Page */
.export-section {
    background: var(--bg-secondary);
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid var(--bg-tertiary);
    margin-bottom: 1.5rem;
}

.export-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-tertiary);
}

.export-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.export-option {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--bg-tertiary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.export-option:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.export-option-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.export-option h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-tertiary);
}

.export-option p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content,
.modal-dialog {
    background: var(--bg-secondary);
    border-radius: 0.75rem;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    border: 1px solid var(--bg-tertiary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    font-size: 1.5rem;
    color: #fff;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--accent-color);
}

.modal-body {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-primary);
    border: 1px solid var(--bg-tertiary);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.modal-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    background: var(--bg-secondary);
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--bg-tertiary);
}

.tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 0.25rem;
    transition: all 0.2s;
    font-size: 1rem;
}

.tab:hover {
    color: var(--accent-color);
}

.tab.active {
    background: var(--accent-color);
    color: #fff;
}

/* Notification */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--accent-color);
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 2000;
    display: none;
    animation: slideIn 0.3s ease-out;
}

.notification.show {
    display: block;
}

.notification.success {
    border-color: var(--success-color);
}

.notification.error {
    border-color: var(--error-color);
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}
