.moderation-actions{
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.moderation-button {
    color: #fcfcfe;
    text-decoration: none;
}

.moderation-button.activeButton {
    font-weight: bold;
}





.report-list {
    display: grid;
    gap: 1rem;
    padding: 1rem;
}

.report-card {
    background: #4e3166ad;
    backdrop-filter: blur(6px);
    border: 1px solid #fcfcfe;
    /*background: #605db0;
    border: 1px solid #b0b0d8;*/
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.report-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    /*color: #333;*/
}

.report-body {
    font-size: 0.95rem;
    /*color: #fcfcfe;*/
}

.report-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    /*color: #888;*/
}

.report-status {
    background: #da9875;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.resolve-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.resolve-btn:hover {
    background: #218838;
}
