.mi-report-section {
display: flex;
align-items: center;
gap: 12px;
margin: 18px 0 24px;
}
.mi-report-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 14px;
border: 1px solid var(--mi-line, #d7ccb5);
border-radius: 999px;
background: var(--mi-paper-strong, #fffdf6);
color: var(--mi-ink, #1f261e);
font: inherit;
font-size: 14px;
font-weight: 700;
cursor: pointer;
transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.mi-report-btn:hover,
.mi-report-btn:focus {
border-color: var(--mi-grass-deep, #3f7c2b);
box-shadow: 0 8px 20px rgba(31, 38, 30, 0.08);
transform: translateY(-1px);
}
.mi-report-btn svg {
flex: 0 0 auto;
}
.mi-report-count {
font-size: 13px;
font-weight: 700;
color: var(--mi-muted, #5d665f);
} .mi-report-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 999999;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: opacity 0.2s, visibility 0.2s;
}
.mi-report-modal.mi-report-modal--open {
opacity: 1;
visibility: visible;
}
.mi-report-modal-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(31, 38, 30, 0.55);
}
.mi-report-modal-content {
position: relative;
background: var(--mi-paper-strong, #fffdf6);
border: 1px solid var(--mi-line, #d7ccb5);
border-radius: 12px;
padding: 28px 30px;
max-width: 520px;
width: 92%;
max-height: 90vh;
overflow-y: auto;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.mi-report-modal-close {
position: absolute;
top: 12px;
right: 16px;
background: none;
border: none;
font-size: 26px;
cursor: pointer;
color: var(--mi-muted, #5d665f);
line-height: 1;
padding: 2px 6px;
border-radius: 4px;
transition: background 0.15s;
}
.mi-report-modal-close:hover {
background: var(--mi-line, #d7ccb5);
color: var(--mi-ink, #1f261e);
}
.mi-report-modal-content h3 {
margin: 0 0 6px 0;
font-size: 20px;
color: var(--mi-ink, #1f261e);
}
.mi-report-modal-info {
font-size: 14px;
color: var(--mi-muted, #5d665f);
margin: 0 0 18px 0;
line-height: 1.5;
}
.mi-report-modal-info strong {
color: var(--mi-ink, #1f261e);
} .mi-report-field {
margin-bottom: 16px;
}
.mi-report-field label {
display: block;
margin-bottom: 5px;
font-size: 14px;
font-weight: 600;
color: var(--mi-ink, #1f261e);
}
.mi-report-field .required {
color: #e74c3c;
}
.mi-report-field input[type="url"],
.mi-report-field input[type="text"],
.mi-report-field select,
.mi-report-field textarea {
width: 100%;
padding: 10px 12px;
border: 1px solid var(--mi-line, #d7ccb5);
border-radius: 6px;
font-size: 14px;
background: #fff;
box-sizing: border-box;
font-family: inherit;
color: var(--mi-ink, #1f261e);
transition: border-color 0.15s, box-shadow 0.15s;
}
.mi-report-field input:focus,
.mi-report-field select:focus,
.mi-report-field textarea:focus {
border-color: var(--mi-grass-deep, #3f7c2b);
outline: none;
box-shadow: 0 0 0 3px rgba(63, 124, 43, 0.12);
}
.mi-report-field textarea {
resize: vertical;
min-height: 70px;
}
.mi-report-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
}
.mi-report-submit {
width: 100%;
padding: 12px;
background: var(--mi-grass, #6dbc46);
border: none;
border-radius: 6px;
color: #fff;
font-size: 15px;
font-weight: 700;
cursor: pointer;
transition: background 0.2s;
font-family: inherit;
}
.mi-report-submit:hover {
background: var(--mi-grass-deep, #3f7c2b);
}
.mi-report-submit:disabled {
background: #b0b0b0;
cursor: not-allowed;
} .mi-report-msg {
margin-top: 14px;
padding: 14px;
border-radius: 8px;
text-align: center;
font-size: 14px;
font-weight: 500;
}
.mi-report-msg--success {
background: #eafbea;
border: 1px solid #c3e6c3;
color: #1a7a1a;
}
.mi-report-msg--error {
background: #fdf0f0;
border: 1px solid #e6c3c3;
color: #c0392b;
} @media (max-width: 600px) {
.mi-report-modal-content {
padding: 20px;
width: 96%;
}
.mi-report-row {
grid-template-columns: 1fr;
gap: 0;
}
}