/* Admin Settings Page Design */

.sfau-settings-wrap {
    max-width: 800px;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.sfau-header {
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.sfau-header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #23282d;
    padding: 0;
}

.sfau-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 20px;
}

.sfau-card h2 {
    margin-top: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    color: #23282d;
}

.form-table th {
    width: 200px;
    font-weight: 600;
    color: #444;
}

.form-table td {
    padding: 15px 10px;
}

/* Custom Checkbox/Radio Styling */
.sfau-settings-wrap input[type="checkbox"],
.sfau-settings-wrap input[type="radio"] {
    margin-right: 8px;
}

.sfau-settings-wrap label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.sfau-settings-wrap fieldset label {
    display: block;
    margin-bottom: 10px;
}

/* Input Fields */
.sfau-settings-wrap input[type="number"] {
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: none;
}

/* Submit Button */
.sfau-settings-wrap .submit {
    padding: 0;
    margin-top: 20px;
}

.sfau-settings-wrap .button-primary {
    background: #0073aa;
    border-color: #0073aa;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-shadow: none;
    font-weight: 600;
    padding: 6px 20px;
    height: auto;
    font-size: 14px;
    transition: all 0.2s ease;
}

.sfau-settings-wrap .button-primary:hover {
    background: #005177;
    border-color: #005177;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

/* Review Card Specifics */
.sfau-review-card {
    background-color: #f0f8ff !important; /* Light azure */
    border: 1px solid #cce5ff !important;
}

.sfau-review-card h2 {
    color: #004085 !important;
    border-bottom-color: #cce5ff !important;
}

.sfau-review-card p {
    font-size: 15px;
    line-height: 1.5;
    color: #004085 !important;
    margin-bottom: 20px;
}
