.notice-success {
    background-color: #eaf6ea;
    border-left: 4px solid #46b450;
    color: #000;
}

.settings-card {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 8px;
    padding: 20px 25px;
    max-width: 600px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.settings-card h1 {
    font-size: 22px;
    font-weight: 600;
    color: #23282d;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.settings-description {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
}

.form-table td p.field-description {
    font-size: 12px;
    color: #666;
    margin: 5px auto 10px;
}

.form-table th {
    text-align: left;
    font-weight: 500;
    color: #333;
    padding-bottom: 8px;
}

.form-table input {
    width: 100%;
    max-width: 450px;
    padding: 8px 10px;
    border: 1px solid #ccd0d4;
    border-radius: 6px;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.form-table input:focus {
    border-color: #007cba;
    outline: none;
    box-shadow: 0 0 0 1px #007cba;
}

.form-table select {
    width: 100%;
    max-width: 400px;
    padding: 8px 36px 8px 10px; 
    border: 1px solid #ccd0d4;
    border-radius: 6px;
    background-size: 16px;
    appearance: none; 
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-table select:focus {
    border-color: #007cba;
    outline: none;
    box-shadow: 0 0 0 1px #007cba;
}

.form-table select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

.submit {
    margin-top: 25px;
    margin-bottom: 0;
    padding-top: 15px;
    border-top: 1px solid #eee;
    text-align: right;
}

.submit .button-primary {
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 500;
}