/* START KOL Spam Reporting Light Theme */
html.light-mode .kol-spam-report-modal {
    display: none !important;
    position: fixed;
    z-index: 999999 !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7) !important;
    align-items: center;
    justify-content: center;
    overflow: auto;
}

html.light-mode .kol-spam-report-modal[style*="display: flex"] {
    display: flex !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
}

html.light-mode .kol-spam-report-modal-content {
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
    position: absolute;
    z-index: 1000000 !important;
    max-height: 90vh;
    overflow-y: auto;
}

html.light-mode .kol-spam-report-close {
    color: #999;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    margin: 0;
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    border: none;
    background: none;
    transition: color 0.2s ease;
}

html.light-mode .kol-spam-report-close:hover,
html.light-mode .kol-spam-report-close:focus {
    color: #333;
}

html.light-mode .kol-spam-report-header {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    align-items: flex-start;
}

html.light-mode .kol-report-user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #d1d5db;
}

html.light-mode .kol-report-user-info h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

html.light-mode .kol-report-username {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

html.light-mode .kol-form-group {
    margin-bottom: 20px;
    clear: both;
}

html.light-mode .kol-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #1f2937;
}

html.light-mode .kol-form-group select,
html.light-mode .kol-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
    background-color: #f9fafb;
    color: #1f2937;
}

html.light-mode .kol-form-group select:focus,
html.light-mode .kol-form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 5px rgba(0, 102, 204, 0.2);
    background-color: #ffffff;
}

html.light-mode .kol-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

html.light-mode .kol-form-actions {
    text-align: right;
    margin-top: 20px;
    clear: both;
}

html.light-mode .kol-spam-report-cancel {
    margin-right: 10px;
    background-color: #f3f4f6;
    color: #1f2937;
    border: 1px solid #d1d5db;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s ease;
}

html.light-mode .kol-spam-report-cancel:hover {
    background-color: #e5e7eb;
}

html.light-mode .kol-spam-report-submit {
    background-color: #0066cc;
    color: white;
    border: 1px solid #0052a3;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s ease;
}

html.light-mode .kol-spam-report-submit:hover {
    background-color: #0052a3;
}
/* END KOL Spam Reporting Light Theme */

/* START KOL Spam Reporting Dark Theme */
html.dark-mode .kol-spam-report-modal {
    display: none !important;
    position: fixed;
    z-index: 999999 !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7) !important;
    align-items: center;
    justify-content: center;
    overflow: auto;
}

html.dark-mode .kol-spam-report-modal[style*="display: flex"] {
    display: flex !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
}

html.dark-mode .kol-spam-report-modal-content {
    background-color: #2a2a2a;
    padding: 30px;
    border: 1px solid #444;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
    position: absolute;
    z-index: 1000000 !important;
    max-height: 90vh;
    overflow-y: auto;
}

html.dark-mode .kol-spam-report-close {
    color: #666;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    margin: 0;
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    border: none;
    background: none;
    transition: color 0.2s ease;
}

html.dark-mode .kol-spam-report-close:hover,
html.dark-mode .kol-spam-report-close:focus {
    color: #ccc;
}

html.dark-mode .kol-spam-report-header {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    align-items: flex-start;
}

html.dark-mode .kol-report-user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #555;
}

html.dark-mode .kol-report-user-info h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
    color: #e0e0e0;
}

html.dark-mode .kol-report-username {
    margin: 0;
    font-size: 14px;
    color: #9ca3af;
}

html.dark-mode .kol-form-group {
    margin-bottom: 20px;
    clear: both;
}

html.dark-mode .kol-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #e0e0e0;
}

html.dark-mode .kol-form-group select,
html.dark-mode .kol-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #555;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
    background-color: #333;
    color: #e0e0e0;
}

html.dark-mode .kol-form-group select:focus,
html.dark-mode .kol-form-group textarea:focus {
    outline: none;
    border-color: #4da3ff;
    box-shadow: 0 0 5px rgba(77, 163, 255, 0.2);
    background-color: #3a3a3a;
}

html.dark-mode .kol-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

html.dark-mode .kol-form-actions {
    text-align: right;
    margin-top: 20px;
    clear: both;
}

html.dark-mode .kol-spam-report-cancel {
    margin-right: 10px;
    background-color: #444;
    color: #e0e0e0;
    border: 1px solid #555;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s ease;
}

html.dark-mode .kol-spam-report-cancel:hover {
    background-color: #555;
}

html.dark-mode .kol-spam-report-submit {
    background-color: #4da3ff;
    color: #1a1a1a;
    border: 1px solid #2d7aff;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s ease;
}

html.dark-mode .kol-spam-report-submit:hover {
    background-color: #2d7aff;
}
/* END KOL Spam Reporting Dark Theme */
