:root {
    --page-background: #000;
    --surface-background: #000;
    --text-color: #b7f7c1;
    --border-color: #b7f7c1;
    --button-hover-background: #102915;
}

:root[data-theme="light"] {
    --page-background: #e8f5ea;
    --surface-background: #f7fff8;
    --text-color: #12351a;
    --border-color: #287a3a;
    --button-hover-background: #fff;
}

body {
    text-align: center;
    background-color: var(--page-background);
    color: var(--text-color);
}

#border {
    border: 5px solid var(--border-color);
    border-radius: 10px;
    background-color: var(--surface-background);
    min-height: 100vh;
    height: auto;
}

.bagel-fat-one-regular {
    font-family: "Bagel Fat One", system-ui;
    font-weight: 400;
    font-style: normal;
}

input {
    padding: 10px;
    box-sizing: border-box;
    min-height: 40px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--surface-background);
    color: var(--text-color);
    font-family: "Bagel Fat One", system-ui;
}

button {
    padding: 10px 20px;
    background-color: var(--surface-background);
    color: var(--text-color);
    border: 2px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    font-family: "Bagel Fat One", system-ui;
}

button:hover {
    transform: scale(1.1);
    border: 5px solid var(--border-color);
    background-color: var(--button-hover-background);
    border-radius: 5px;
    padding: 5px 15px;
}

#chatbox {
    text-align: center;
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
    padding: 10px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--surface-background);
    text-align: left;
    border-radius: 10px;
    border: 5px solid var(--border-color);
    max-height: 400px;
    overflow-y: auto;
}

#adminPanel {
    margin-top: 40px;
}

#muteControls {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
}

#muteDurationInput {
    width: 90px;
}

#muteMessageInput {
    min-width: 180px;
}

.admin-badge {
    color: var(--text-color);
}

.system-tag {
    color: var(--text-color);
}

#helpBtn {
    margin-top: 25px;
    width: 100px;
}

#friendsLobbyBox {
    width: min(90%, 600px);
    margin: 20px auto;
    padding: 12px;
    box-sizing: border-box;
    border: 3px solid var(--border-color);
    border-radius: 10px;
    background-color: var(--surface-background);
}

#friendsLobbyBox h2 {
    margin: 5px;
}