html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}
.home-link {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 50px;
}

textarea {
    margin: 0px !important;
}

body {
    background-color: #141a32;
    color: #eeeeee;
    /* font-family: 'PT Sans', sans-serif; */
    /* font-family: Consolas, monaco, monospace; */

}
.hidden {
    display: none !important;
}
input, textarea {
    font-family: Consolas, monaco, monospace;
}
.title {
    margin: 10px;
    font-size: 40px;
    font-family: Consolas, monaco, monospace;
    /* font-f */
}

.subtitle {
    font-size: 17px;
    font-family: Consolas, monaco, monospace;
}

button {
    cursor: pointer;
    font-family: Consolas, monaco, monospace;
    background: none;
    outline: none;
    border: 1px solid #0f044c;
    /* width: 100%; */
    font-size: 17px;
    margin-top: 0px;
    margin-bottom: 0px;
    color: #0f044c;
    background: #5a6583;
    /* padding: 5px; */
}
button:hover, button:focus {
    outline: 2px solid #0f044c;
    /* margin-top: -2px;
    margin-bottom: -2px;
    margin-left: -2px; */
}

input {
    font-size: 17px;
    outline: none;
    background: none;
    border: 1px solid #0f044c;
}

textarea {
    font-family: Consolas, monaco, monospace;
    outline: none;
    border: 1px solid #0f044c;
    background: none;
}


input:focus {
    outline: 2px solid #0f044c;
}

textarea:focus {
    outline: 2px solid #0f044c !important;
}


@media (max-width: 1250px) {
    .content {
        flex-direction: column;
        /* width: 100%; */
        /* padding: 40px; */
        /* width: 50%; */
        width: 70%;
    }
    .content-column {
        width: calc(100% - 80px) !important;
        /* box-sizing: border-box;
        width: 100%; */
        /* width: 100% !important;
        margin: 0px;
        box-sizing: border-box; */
        margin-bottom: 0px !important;

    }

    #main-column {
        order: 0;
    }
    #rooms-column {
        order: 1;
    }
    #info-column {
        order: 2;
        margin-bottom: 20px !important;
    }
}
@media (max-width: 700px) {
    .content {
        width: 100% !important;
    }
}
a {
    color: #809cf5 !important;
    /* text-decoration: none !important; */
}
.content > .content-column:first-of-type, .content > .content-column:last-of-type {
    width: 300px;
}
.content {
    display: flex;
}
.main-column {

}
.hidden-column {
    visibility: hidden;
}
.content-column {
    border: 1px solid black;
    box-shadow: 0px 0px 10px 0px black;
    margin: 20px;
    padding: 20px;
    border-radius: 20px;
    background-color: #787a91;
    color: rgb(20 30 97);
    width: 400px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
ul {
    margin: 0px;
}
.content-row {
    display: flex;
    flex-direction: column;
    border: 1px solid #5a6583;
    padding: 10px;
    border-radius: 10px;
}
.content-title {
    font-family: Consolas, monaco, monospace;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    position: relative;
    /* font-weight: bold; */
}
.content-title > button {
    position: absolute;
    top: -5px;
    right: 0;
}
.content-title::after {
    content: " ";
    width: 100%;
    height: 1px;
    background-color: #5a6583;
}
.button-container {
    display: flex;
    gap: 10px;
}
.button-container > * {
    flex-grow: 1;
}
.content-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.content-content > button:last-child {
    /* margin-top: 10px; */
}