@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

/* Table + Gameboard Border Effect */
:root {
	--wrapper-width: 400px;
	--wrapper-height: 200px;
    --book-cover-height: 400px;
    --book-cover-width: 300px;
    --book-height: 400px;
    --book-width: 600px;
    --book-color: #E4E4E6;
}

* {
    font-family: "Titillium Web", sans-serif;
	margin: 0;
    padding: 0;
	letter-spacing: -.01em;
    font-size: 1em;
}

#rooomWrapper {
    width: 33%;
    max-width: 33%;
} #rooom {
	/* border: 1px solid rgba(200, 200, 200, .5); */
    height: 5vh;
    width: 5vh;
    line-height: 1em;
    white-space: nowrap;
    display: absolute;
    float: left;
    background: -webkit-linear-gradient(45deg, #C99846,#E9D07C);
    background: linear-gradient(45deg, #C99846,#E9D07C);
}

a {
    /* Reset all links bc */
    text-decoration: none;
    color: inherit;
}
#logo {
    display: flex;
    flex-direction: column;
    width: 33%;
    max-width: 33%;
    justify-content: center;
    align-items: center;
}

#function-bar {
    /* Always top right corner */
    margin: 0;
    padding: 0;
    height: 5vh;
    display: flex;
    width: auto;
    max-width:  33%;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    vertical-align: middle;
    align-content: center;
    justify-content: center;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(#e6e6e6));
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.25), #e6e6e6);
    overflow: hidden;
} #function-bar a {
    border-color: #7c7c7c;
    font-weight: bold;
    padding: 25px 2.5%;
    width: 33%;
    max-width: 33%;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    position: relative;

    display: flex;
    align-items: center;     /* vertical */
    justify-content: center; /* horizontal */

    /* box-shadow: inset 0px 1px 0px rgba(255,255,255,1); */
    outline: none;
} #function-bar a:first-child {
    border-right: 1px solid #b5b5b5;
} #function-bar a:last-child {
    border-left: 1px solid #b5b5b5;
}

/* .badge {
    background-color: orange;
} */
#like img {
    height: 1em;
}

#header {
    display: flex;
    flex-direction: row;
    align-items: top;
    justify-content: space-between; /* Align items at both ends */
    max-height: 10vh;
    width: 100%;
    font-size: 1em;
    overflow: hidden;
}

/* Optional: Add styles for individual columns if needed */
#rooomWrapper,
#floorLabel,
#counts,
#function-bar {
    flex: 1;
} #function-bar {
	text-align: center;
}

form input {
	max-width: 95%;
}