/* Container */
.gr-wrapper {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 10px;
    font-family: "Segoe UI", Tahoma, sans-serif;
}

/* Main heading with emoji */
.gr-wrapper h1 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Section label */
.gr-field label {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 12px;
    display: block;
}

/* Checkbox layout */
.gr-status-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.gr-status-item label {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
}

.gr-status-item input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.1);
}

/* Save button */
input[type="submit"],
button.button-primary {
    background-color: #007cba;
    border: none;
    padding: 10px 20px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover,
button.button-primary:hover {
    background-color: #005f8d;
}
