2026-06-23 17:03:06 +00:00
|
|
|
/* === Admin Panel === */
|
|
|
|
|
#serverStats {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
gap: 15px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 1000px;
|
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
background-color: #2a2a2a;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
border: 1px solid #444;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#serverStats > div {
|
|
|
|
|
background-color: #3d3d3d;
|
|
|
|
|
padding: 15px 20px;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
min-width: 120px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#roomList,
|
|
|
|
|
#userList,
|
|
|
|
|
#bannedList {
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 1000px;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
margin-left: 0; /* Override collapsible default */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#roomList > div,
|
|
|
|
|
#userList > div,
|
|
|
|
|
#bannedList > div {
|
|
|
|
|
background-color: #2a2a2a;
|
|
|
|
|
border: 1px solid #444;
|
|
|
|
|
padding: 12px 15px;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Make buttons in lists smaller/neater */
|
|
|
|
|
#roomList button,
|
|
|
|
|
#userList button {
|
|
|
|
|
min-height: 32px;
|
|
|
|
|
height: auto;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
padding: 4px 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#broadcastInput {
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
color: #444;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#bulkInput {
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 600px;
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
color: #333;
|
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
font-family: monospace;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Transcript Overlay Modal */
|
|
|
|
|
#transcriptOverlay button {
|
|
|
|
|
background-color: #d9534f;
|
|
|
|
|
color: white;
|
|
|
|
|
border: none;
|
|
|
|
|
padding: 6px 12px;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
height: auto;
|
|
|
|
|
min-height: auto;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
#transcriptOverlay button:hover {
|
|
|
|
|
background-color: #c9302c;
|
|
|
|
|
}
|