.rpt_spam_form_wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.rpt_spam_form_wrapper .rpt_spam_form {
    position: relative;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
}

.rpt_spam_form_wrapper .close-button {
    position: absolute;
    right: 15px;
    top: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 5px;
    line-height: 1;
    transition: color 0.3s ease;
}

.rpt_spam_form_wrapper .close-button:hover {
    color: #333;
}

.rpt_spam_form_wrapper h2 {
    margin: 0 0 20px;
    font-size: 1.5em;
    color: #333;
}

.rpt_spam_form_wrapper #spam-description {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.4;
}

.rpt_spam_form_wrapper form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rpt_spam_form_wrapper label {
    font-weight: bold;
    color: #444;
}

.rpt_spam_form_wrapper select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
}

.rpt_spam_form_wrapper select:focus {
    outline: none;
    border-color: #007bff;
}

.rpt_spam_form_wrapper button[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.rpt_spam_form_wrapper button[type="submit"]:hover {
    background-color: #0056b3;
}

.rpt_spam_form_wrapper button[type="submit"]:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.rpt_spam_form_wrapper .loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.rpt_spam_form_wrapper .success-message {
    color: #28a745;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 10px;
    margin-top: 15px;
    border-radius: 4px;
    text-align: center;
}

.rpt_spam_form_wrapper .error-message {
    color: #dc3545;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px;
    margin-top: 15px;
    border-radius: 4px;
    text-align: center;
}

.report_spam_init_btn {
    padding: 5px 10px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.report_spam_init_btn:hover {
    background-color: #e9ecef;
    color: #333;
}

@media (max-width: 768px) {
    .rpt_spam_form_wrapper .rpt_spam_form {
        width: 95%;
        padding: 20px;
    }

    .rpt_spam_form_wrapper h2 {
        font-size: 1.2em;
    }

    .rpt_spam_form_wrapper .close-button {
        font-size: 20px;
    }
}