.chat-log {
    font-family: monospace;
    font-size: 13px;
    color: lime;
    overflow-y: auto;
    overflow-x: hidden;
    height: 140px;
}

.chat-input {
    width: 100%;
    background: black;
    color: lime;
    border: 1px dashed #0f0;
    font-family: monospace;
    font-size: 13px;
    padding: 4px;
    max-width: 97%;
}

.chat-line {
    font-family: monospace;
    font-size: 13px;
    color: lime;
}

.chat-name {
    font-weight: bold;
    text-shadow: 0 0 1px lime;
    color: #0f0;
}

/* Override color for gradient effects - let background gradient show through */
.chat-name .gradient-rainbow {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow: none; /* Remove text shadow that interferes with gradient */
}

.gradient-rainbow {
    background: linear-gradient(45deg,
    var(--base-color, #3498db),
    #ff0080,
    #ff8000,
    #ffff00,
    #80ff00,
    #00ff80,
    #0080ff,
    #8000ff,
    var(--base-color, #3498db)
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow-shift 3s ease-in-out infinite;
}

.chat-msg {
    color: lime;
    font-weight: normal;
}

/* Moderation styles */
.mute-link {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: bold;
    font-size: 11px;
    background: rgba(255, 107, 107, 0.1);
    display: inline;
    letter-spacing: 1px;
}

.mute-link:hover {
    background: rgba(255, 107, 107, 0.2);
    color: #ff4757;
}

.delete-link {
    color: #ff4757;
    text-decoration: none;
    font-weight: bold;
    font-size: 11px;
    border-bottom: none;
    cursor: pointer;
    letter-spacing: 1px;
}

.delete-link:hover {
    background: rgba(255, 71, 87, 0.2);
    color: #e63946;
}

/* Button form for delete button */
.chat-line form {
    display: inline;
}
.moderation-panel {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #333;
    padding: 20px;
    border-radius: 4px;
    color: #ecf0f1;
    margin: 10px;
}

.moderation-panel h3, h4 {
    color: #f39c12;
}
