.navbar {
overflow: hidden;
display: flex;
flex-direction: column;
background-color: #f5f5f5;
border: 1px solid #e0e0e0;
border-radius: 8px;
box-shadow: 0 0 0.3em #999;
}
.navbar hr {
margin: 0 0.25rem;
background-color: #e0e0e0;
}
.navbar-header {
user-select: none;
overflow: hidden;
display: flex;
text-align: center;
font-weight: bold;
font-size: 1.75rem;
line-height: 1.1em;
min-height: 2.5rem;
background-color: #666;
border-bottom: 2px solid #999;
}
.navbar-title {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
line-height: 1em;
margin: 2px 0.75rem 0;
color: #ffffff;
}
.navbar-button {
position: relative;
display: flex;
width: 5rem;
background-color: #999;
box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.33);
transition-property: background-color;
transition-duration: 0.2s;
}
.navbar-button:hover {
background-color: #b3b3b3;
}
.navbar-button:active {
background-color: #808080;
transition-duration: 0s;
}
.navbar-button a {
position: absolute;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
inset: 0;
color: #ffffff !important;
}
.navbar-content {
padding: 0.5rem 0.66rem;
}
.navbar-content p:last-of-type {
margin-block-end: 0;
}
.navbar-tabs {
padding: 0.25rem;
}