/**
 * YOOAdmin - Notification preferences page
 *
 * @package YOOAdmin
 */

.yp-notification-preferences {
    max-width: 800px;
    margin: 20px 0;
}

.yp-preferences-section {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}

.yp-preferences-section h2 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.yp-preferences-section p {
    margin: 0 0 20px 0;
    color: var(--yp-text);
}

.yp-preferences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.yp-preference-item {
    display: flex;
    align-items: center;
}

.yp-preference-item label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.yp-preference-item input[type="checkbox"],
.yp-preference-item input[type="radio"] {
    margin-right: 8px;
}

.yp-preference-item input[type="number"],
.yp-preference-item select {
    margin-left: 10px;
    width: 100px;
}

.yp-preferences-actions {
    text-align: center;
    padding: 20px 0;
}

.yp-preferences-actions .button {
    margin: 0 10px;
}
