.react-settings-wrap {
    background: #f1f1f1;
    margin: 20px 0 0 -20px;
    padding: 0;
}

.react-header {
    background: linear-gradient(135deg, #61dafb 0%, #21232a 100%);
    color: white;
    padding: 30px;
    margin: 0;
}

.react-header h1 {
    color: white;
    margin: 0;
    font-size: 28px;
    display: flex;
    align-items: center;
}

.react-icon {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    filter: brightness(0) invert(1);
}

.react-content {
    padding: 30px;
    max-width: 1200px;
}

.settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.settings-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e1e1;
}

.settings-card h3 {
    margin: 0 0 15px 0;
    color: #23282d;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.settings-card .dashicons {
    margin-right: 8px;
    color: #61dafb;
}

.form-field {
    margin-bottom: 15px;
}

.form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #61dafb;
    box-shadow: 0 0 0 2px rgba(97, 218, 251, 0.2);
    outline: none;
}

.logo-upload-area {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background: #fafafa;
    transition: all 0.3s ease;
}

.logo-upload-area:hover {
    border-color: #61dafb;
    background: #f0fdff;
}

.logo-preview {
    margin-top: 15px;
    text-align: center;
}

.logo-preview img {
    max-width: 150px;
    height: auto;
}

.btn-primary {
    background: #61dafb;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-right: 10px;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary:hover {
    background: #4fa8c5;
}

.save-section {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e1e1;
    text-align: center;
}

.description {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .settings-grid {
        grid-template-columns: 1fr;
    }
}