/* Settings Page Styles */

.settings-tab {
    color: #9ca3af;
    border-bottom-color: transparent;
    transition: all 0.3s ease;
}

.settings-tab:hover {
    color: #e5e7eb;
    border-bottom-color: #4b5563;
}

.settings-tab.active {
    color: #ef4444;
    border-bottom-color: #ef4444;
}

.settings-content {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Styles */
input[type="text"],
input[type="email"],
input[type="password"],
select {
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select:focus {
    outline: none;
    background-color: #374151;
}

/* Checkbox Styles */
input[type="checkbox"] {
    border-radius: 4px;
    cursor: pointer;
}

input[type="checkbox"]:checked {
    background-color: #ef4444;
    border-color: #ef4444;
}

/* API Key Input Styles */
.api-key-input {
    font-family: monospace;
    font-size: 0.9rem;
}

/* Success/Error Messages */
.success-message {
    background-color: #10b981;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 16px;
    animation: slideDown 0.3s ease;
}

.error-message {
    background-color: #ef4444;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 16px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}