body {
    background-color: rgba(0, 0, 0, 0.87);
    font-family: Arial, Helvetica, sans-serif;
}

.userId {
    text-align: center;
}

.white {
    color: white;
}

.assgrey {
    background-color: #343230;
    color: white;
    border-color: #262422;
}

.assgrey:hover {
    color: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 15px rgba(8, 8, 8, 0.4);
}

.assgrey::placeholder {
    color: white;
}

.btn {
    text-decoration: none;
    color: white;
    background: #343230;
    border-color: #262422;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
    width: 70px;
}

.btn:hover {
    color: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 15px rgba(8, 8, 8, 0.4);
}

.modal {
    box-sizing: border-box;
    background: rgb(194, 194, 194);
    border: none;
    border-radius: 1rem;
    font-size: large;
    font-weight: bold;
}

.modal::backdrop {
    background-color: rgba(0, 0, 0, 0.6);
}

.head {
    display: grid;
    grid-template-columns: 1fr auto;
    height: min-content;
}

.head > button {
    height: fit-content;
    width: fit-content;
    background: none;
    border: none;
    cursor: pointer;
}

.head > button:hover {
    color: rgb(111, 111, 111);
}

.head > button:focus {
    border-radius: 1px;
    border-color: rgb(113, 113, 255);
}

.head > p {
    margin: 0;
    margin-bottom: 2px;
    font-weight: bolder;
    font-size: large;
    height: fit-content;
}

.mainContent {
    display: grid;
    height: 95dvh;
    width: 100%;
    grid-template-columns: 1fr 4fr 1fr;
    gap: 10px;
}

@media (max-width: 723px) {
    .mainContent {
        grid-template-columns: 1fr;
        grid-template-rows: 2fr 1fr 2fr;
    }
}

.player {
    display: block;
    height: 100%;
    width: 100%;
}

.roomInfo {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #13131361;
    border-radius: 10px;
    padding: 5px;
}

.messages {
    height: 100%;
    display: grid;
    grid-template-rows: 1fr auto;
}

.userContainer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #13131361;
    border-radius: 10px;
    padding: 5px;
}

#messages {
    overflow-y: auto;
}

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

.util-action {
    display: flex;
    width: 100%;
    flex-direction: row;
}


.util-action > input {
    flex-grow: 0;
    width: 94%;
    border-right: none;
}