body{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #b6b6b6;
    display: flex;
    flex-direction: column;
    height: 100vh;
}
.header{
    background-color: #1f1f1f;
    color: white;
    height: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 6px;
}
.header-title{
    flex:1;
}
.header-menu{
    height: 100%;
    border-left:1px solid #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px;
    text-decoration: none;
    color: white;
}
.header-menu a{
    color: white;
    text-decoration: none;
}
.header-menu:hover{
    background-color: #333;
    cursor: pointer;
}

.footer{
    background-color: #1f1f1f;
    color: white;
    height: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 6px;
}

.roomjoiner{
    display: flex;
    flex-direction: column;
    width: 800px;
    height: 256px;
    background-color: #09123b;
    color: white;
    border-radius: 8px;
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    
    margin: auto;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.roomjoiner h1{
    margin: 0;
    margin-bottom: 20px;
}
.roomjoiner form{
    display: flex;
    flex-direction: row;
}
.roomjoiner input{
    padding: 10px;
    border: 2px solid #00e1ff;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
    flex: 1;
}
.roomjoiner button{
    padding: 10px 20px;
    border: none;
    background-color: #00e1ff;
    color: #09123b;
    font-size: 16px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}
.roomjoiner button:hover{
    background-color: #00c1e0;
}
.spacer{
    flex: 1;
}
.newRoomButton{
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background-color: #00e1ff;
    color: #09123b;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
}
.newRoomButton:hover{
    background-color: #00c1e0;
}
.error{
    color: #ff4d4d;
    margin-top: 10px;
}
.content{
    display: flex;
    flex-direction: column;
    flex: 1;
}