/* Khabarfouri Theme Settings Styles */
.khabarfouri-settings-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.khabarfouri-settings-wrap h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.khabarfouri-settings-wrap form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.regular-text {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    transition: border-color 0.3s ease;
}

.regular-text:focus {
    border-color: #61CE70;
    outline: none;
}

.upload-image-button {
    background: #2271b1 !important;
    border-color: #2271b1 !important;
    color: #fff !important;
    border-radius: 4px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.3s ease;
}

.upload-image-button:hover {
    background: #135e96 !important;
    border-color: #135e96 !important;
}

.button-danger {
    background: #d63638 !important;
    border-color: #d63638 !important;
    color: #fff !important;
    border-radius: 4px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.3s ease;
}

.button-danger:hover {
    background: #c32f31 !important;
    border-color: #c32f31 !important;
}

.button-save {
    background: #2271b1 !important;
    border-color: #2271b1 !important;
    color: #fff !important;
    border-radius: 4px;
    padding: 10px 15px;
    transition: background 0.3s ease;
}

.button-save:hover {
    background: #135e96 !important;
    border-color: #135e96 !important;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .khabarfouri-settings-wrap {
        padding: 15px;
    }

    .regular-text {
        width: 100%;
    }
}