/* Global base styles */
body {
    font-family: system-ui, sans-serif;
    margin: 0;
    background: #f8fafc;
    color: #111827;
}

.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
}

/* Utility classes (optional, if you want them globally) */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-4 { gap: 1rem; }
.mt-10 { margin-top: 2.5rem; }

/* Abuse modal hidden by default */
.abuse-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}

/* Abuse modal content box */
.abuse-modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 300px;
    border-radius: 6px;
    font-size: 13px;
    position: relative;
}

/* Close button */
.abuse-close {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}
.abuse-close:hover {
    color: #e74c3c;
}

/* Form styling inside abuse modal */
.abuse-modal-content form input,
.abuse-modal-content form select,
.abuse-modal-content form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 6px;
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.abuse-modal-content form button {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}
