/* Moderation Page Styles */
.moderation-page {
    width: 100%;
}

.moderation-title {
    margin-bottom: 20px;
    text-shadow: 0 1px 0 #fff;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.moderation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .moderation-grid {
        grid-template-columns: 1fr 1fr;
    }

    .moderation-group {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .moderation-group:first-child,
    .moderation-group:nth-child(2) {
        grid-column: span 1;
    }

    .full-width {
        grid-column: span 2;
    }

    .moderation-section-card {
        margin-top: 0;
    }
}

/* Broadcast Management Styles */
.broadcast-manager,
#logo-manager,
#user-ban-manager,
.moderation-section-card {
    background: #fdfdfd;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.broadcast-manager h3 {
    margin-top: 0;
    margin-bottom: 5px;
}

.broadcast-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.broadcast-form textarea {
    min-height: 60px;
    resize: vertical;
}

.broadcast-form select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 0;
    background-color: #fff;
    box-shadow: none;
}

.broadcast-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}

.active-broadcast {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: none;
}

.active-broadcast h4 {
    margin: 0 0 10px 0;
    color: #2e7d32;
    text-shadow: none;
}

.broadcast-actions {
    display: flex;
    gap: 8px;
}

/* Logo Management Styles */
#logo-manager {
    background: #fdfdfd;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

#logo-manager h3 {
    margin-top: 0;
    margin-bottom: 5px;
    text-shadow: none;
}

.logo-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.logo-controls div {
    display: flex;
    gap: 10px;
    align-items: center;
}

#logo-preview {
    border: 1px solid #ccc;
    box-shadow: none;
}

/* User Ban Management Styles */
#user-ban-manager {
    background: #fdfdfd;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

#user-ban-manager h3, #user-ban-manager h4 {
    margin-top: 0;
    margin-bottom: 5px;
    text-shadow: none;
}

.ban-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.ban-form input, .ban-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-family: inherit;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    background-color: #fff;
}

#banned-users-list table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
}

#banned-users-list th, #banned-users-list td {
    border: 1px solid #eee;
    padding: 8px;
    text-align: left;
    font-size: 14px;
    text-shadow: none;
}

#banned-users-list th {
    background-color: #f2f2f2;
}

.table-wrapper {
    overflow-x: auto;
}