.settings-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
}

.data-management {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.setting-item {
    margin-bottom: 2rem;
}

.setting-item h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.setting-item p {
    color: #666;
    margin-bottom: 1rem;
}

.danger-btn {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.danger-btn:hover {
    background-color: #c82333;
}

.secondary-btn {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    margin-left: 1rem;
    transition: background-color 0.3s;
}

.secondary-btn:hover {
    background-color: #5a6268;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    background-color: #fff;
    max-width: 500px;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.modal-buttons {
    margin-top: 2rem;
}

@media (max-width: 600px) {
    .settings-container {
        margin: 1rem;
    }
    
    .modal-content {
        margin: 20% 1rem;
    }
    
    .modal-buttons button {
        display: block;
        width: 100%;
        margin: 1rem 0;
    }
}

/* Add to settings.css */
.export-section {
    margin-top: 2rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.export-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.primary-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.primary-btn:hover {
    background-color: #0056b3;
}

@media (max-width: 600px) {
    .export-buttons {
        flex-direction: column;
    }
    
    .primary-btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}