.hide {
  display: none !important;
}
.inner-wrap #primary .entry-content {
display: flex;
flex-direction: column;
max-width: 800px !important;
margin: 0 auto !important;
}

.mop-field {
display: flex;
flex-direction: column;
gap: 6px;
}

.mop-field label {
font-weight: 600;
font-size: 14px;
}

.mop-field input {
padding: 10px 12px;
font-size: 15px;
border: 1px solid #ccd0d4;
border-radius: 4px;
}

.mop-actions {
display: flex;
justify-content: flex-end;
}

.mop-actions button {
padding: 10px 18px;
background-color: #2271b1; /* WP blue */
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
}

.mop-actions button:hover {
background-color: #135e96;
}

input[type=email], input[type=number], select {
box-sizing: border-box;
display: block;
margin-bottom: 15px;
width: 100%;
}

.mop-form select {
padding: 10px 12px;
font-size: 15px;
border: 1px solid #ccd0d4;
border-radius: 4px;
}

.entry-content .mop-desc ul, .entry-content .mop-desc ol {
/*margin-bottom: 0px;*/
}

.mop-rules {
display: none;
}

.btn-rules {
white-space: normal !important;
}

/*
* Modal
*/
.mop-modal {
position: fixed;
inset: 0;
display: none;
z-index: 10000;
}

.mop-modal.is-open {
display: flex;
align-items: center;
justify-content: center;
}

.mop-modal-overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.6);
}

.mop-modal-content {
position: relative;
background: #fff;
max-width: 500px;
width: 100%;
padding: 24px;
border-radius: 6px;
z-index: 1;
animation: rpFadeIn 0.2s ease-out;
}

@keyframes rpFadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.mop-modal-close {
position: absolute;
top: 12px;
right: 12px;
background: none;
border: none;
font-size: 24px;
cursor: pointer;
}
