/* Admin Settings Page Styles */

.woppy-settings-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.woppy-settings-section h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.woppy-system-status {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.woppy-status-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.woppy-status-item:last-child {
    border-bottom: none;
}

.woppy-status-label {
    font-weight: 600;
    color: #333;
}

.woppy-status-value {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.woppy-status-ok {
    background: #d1e7dd;
    color: #0f5132;
}

.woppy-status-warning {
    background: #fff3cd;
    color: #856404;
}

.woppy-status-error {
    background: #f8d7da;
    color: #842029;
}

.woppy-status-info {
    background: #d1ecf1;
    color: #0c5460;
}

.woppy-help-content h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.woppy-help-content ol,
.woppy-help-content ul {
    margin: 0 0 20px 0;
    padding-left: 20px;
}

.woppy-help-content li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.woppy-help-content a {
    color: #0073aa;
    text-decoration: none;
}

.woppy-help-content a:hover {
    text-decoration: underline;
}

