.activity-stream .lol-pro-delete-trigger { 
    display: inline-block; margin-left: 10px; padding: 2px 8px; font-size: 12px; 
    font-weight: bold; color: #b32d2e !important; background-color: #fcebeb; 
    border: 1px solid #f0b8b8; border-radius: 3px; text-decoration: none; 
    transition: all 0.2s ease-in-out; 
}
.activity-stream .lol-pro-delete-trigger:hover { 
    color: #fff !important; background-color: #b32d2e; border-color: #b32d2e; 
}
.lol-moderation-wrapper { 
    background: #fdfdfd; border: 1px solid #e5e5e5; border-radius: 4px; 
    padding: 20px; margin: 20px 0; box-shadow: 0 1px 1px rgba(0,0,0,0.04); 
}
.lol-moderation-wrapper h3 { 
    margin: 0 0 15px; padding-bottom: 10px; border-bottom: 1px solid #eee; 
    font-size: 18px; font-weight: 600; color: #333; 
}
.lol-moderation-wrapper p { margin: 0 0 15px; color: #555; }
.lol-moderation-wrapper .status-banned-text { font-weight: bold; color: #d63608; }
.lol-moderation-wrapper p strong:first-child { min-width: 90px; display: inline-block; }
.lol-moderation-wrapper form { margin-top: 15px; }
.lol-moderation-wrapper form label { font-weight: bold; display: block; margin-bottom: 5px; }
.lol-moderation-wrapper form select, .lol-moderation-wrapper form textarea { 
    width: 100%; padding: 8px; border-radius: 4px; border: 1px solid #ccc; 
    background-color: #fff; box-sizing: border-box; 
}
.lol-moderation-wrapper form textarea { height: 100px; margin-bottom: 10px; }
.lol-moderation-wrapper form .button { margin-top: 10px; }
.mod-history-toggle { 
    cursor: pointer; font-size: 16px; font-weight: 600; margin-top: 20px; 
    padding-top: 15px; border-top: 1px solid #eee; display: flex; 
    justify-content: space-between; align-items: center; transition: color 0.2s; 
}
.mod-history-toggle:hover { color: #0073aa; }
.mod-history-toggle span { transition: transform 0.3s ease; }
.mod-history-toggle.active span { transform: rotate(180deg); }
.mod-history-log { 
    display: none; max-height: 250px; overflow-y: auto; background: #f9f9f9; 
    padding: 15px; border: 1px solid #e5e5e5; margin-top: 10px; border-radius: 4px; 
}
.mod-history-log ul { list-style: none; padding-left: 0; margin: 0; }
.mod-history-log li { margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px dashed #ddd; }
.mod-history-log li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.mod-history-log p { margin: 5px 0 0 15px; font-size: 13px; color: #666; padding-left: 15px; border-left: 3px solid #ddd; }
.lol-popup-overlay { 
    display: none; justify-content: center; align-items: center; position: fixed; 
    top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.75); 
    z-index: 99999; backdrop-filter: blur(5px); 
}
.lol-popup-window { 
    background: #fff; padding: 0; border-radius: 8px; max-width: 550px; width: 90%; 
    text-align: center; position: relative; box-shadow: 0 10px 25px rgba(0,0,0,0.2); 
    border-top: 5px solid #0073aa; overflow: hidden; 
}
.lol-popup-window.popup-type-ban, .lol-popup-window.popup-type-deletion { border-top-color: #d63608; }
.lol-popup-window.popup-type-win { border-top-color: #4caf50; }
.lol-popup-content { padding: 30px 35px; }
.lol-popup-content h3 { margin-top: 0; margin-bottom: 15px; font-size: 24px; color: #333; }
.lol-popup-content p { margin-bottom: 10px; line-height: 1.6; color: #555; }
.lol-popup-content hr { border: 0; border-top: 1px solid #eee; margin: 25px 0; }
.lol-popup-content .deduction-notice { color: #d63608; font-weight: bold; }
.lol-popup-close { 
    position: absolute; top: 8px; right: 8px; width: 30px; height: 30px; 
    line-height: 30px; background: #f1f1f1; border: none; border-radius: 50%; 
    font-size: 20px; cursor: pointer; color: #777; transition: all 0.2s ease; 
}
.lol-popup-close:hover { background: #e0e0e0; color: #333; transform: rotate(90deg); }
/* --- NEW MODERATION PANEL STYLES --- */

.lol-moderation-wrapper {
    background-color: #242424; /* Dark background from image */
    color: #e4e6eb;
    border: 1px solid #4a4a4e;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden; /* Important for rounded corners with children */
}

.mod-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 55px; /* A bit taller for padding */
    cursor: pointer;
    background-color: #3a3b3c;
    transition: background-color 0.2s ease;
}

.mod-panel-header:hover {
    background-color: #4a4a4e;
}

.mod-panel-header h3 {
    margin: 0;
    font-size: 16px;
    color: #e4e6eb;
}

.mod-panel-toggle-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

/* Rotate the icon arrow when the panel is open */
.mod-panel-header.active .mod-panel-toggle-icon {
    transform: rotate(180deg);
}

.mod-panel-content {
    padding: 20px;
    border-top: 1px solid #4a4a4e;
    display: none; /* The panel is closed by default */
}

.mod-panel-content p, 
.mod-panel-content label {
    color: #b0b3b8;
}

.mod-panel-content select, 
.mod-panel-content textarea {
    width: 100%;
    background-color: #18191a;
    border: 1px solid #4a4a4e;
    color: #e4e6eb;
    border-radius: 6px;
    padding: 8px 12px;
    margin-top: 5px;
}

.mod-panel-content .button {
    border-radius: 6px;
    font-weight: bold;
    padding: 8px 16px;
}

.mod-panel-content .button.button-primary {
    background-color: #d63608; /* Using a red-orange accent */
    border-color: #d63608;
    color: #fff;
}
.mod-panel-content .button.button-primary:hover {
    background-color: #b02a00;
    border-color: #b02a00;
}

.mod-panel-content hr {
    border-color: #4a4a4e;
    margin: 20px 0;
}

.mod-history-log ul {
    list-style: none;
    padding: 0;
}

.mod-history-log li {
    padding: 10px;
    border-bottom: 1px solid #3a3b3c;
}
.mod-history-log li:last-child {
    border-bottom: none;
}