.website-title{
    font-family: "Georgia","Palatino","Times","Roman";
    font-size: 33pt;
    text-align: center;
    margin-top: 25px;
}

.website-container {
    display: flex;
    gap: 20px;
    padding: 20px;
}

.website-sidebar {
    width: 200px;
    flex-shrink: 0;
}

.website-sidebar-box {
    background-color: #e8e8e8;
    padding: 12px;
    border-radius: 0;
    border: 2px outset #dfdfdf;
    box-shadow: inset 1px 1px 0 #ffffff, inset -1px -1px 0 #808080;
}

.website-sidebar-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #000;
    font-family: "MS Sans Serif", Arial, sans-serif;
    font-size: 11pt;
    font-weight: bold;
    padding: 2px 4px;
}

.website-explorer-nav {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.website-explorer-nav li {
    margin: 0;
}

.website-explorer-link {
    display: block;
    padding: 4px 8px;
    text-decoration: none;
    color: #000080;
    border-radius: 0;
    transition: background-color 0.1s ease;
    font-family: "MS Sans Serif", Arial, sans-serif;
    font-size: 11pt;
    border: 1px solid transparent;
}

.website-explorer-link:hover {
    background-color: #000080;
    color: #ffffff;
    border: 1px solid #dfdfdf;
}

.website-search-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.website-search-input {
    padding: 4px;
    font-family: "MS Sans Serif", Arial, sans-serif;
    font-size: 11pt;
    border: 2px inset #dfdfdf;
    box-shadow: inset 1px 1px 0 #ffffff, inset -1px -1px 0 #808080;
    background-color: #ffffff;
}

.website-search-input:focus {
    outline: none;
}

.website-search-button {
    padding: 4px 12px;
    font-family: "MS Sans Serif", Arial, sans-serif;
    font-size: 11pt;
    background-color: #e8e8e8;
    border: 2px outset #dfdfdf;
    box-shadow: inset 1px 1px 0 #ffffff, inset -1px -1px 0 #808080;
    cursor: pointer;
    color: #000000;
}

.website-search-button:active {
    border-style: inset;
    box-shadow: inset 1px 1px 0 #808080, inset -1px -1px 0 #ffffff;
}

.website-search-results {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #dfdfdf;
    display: none;
}

.website-search-result-item {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #dfdfdf;
}

.website-search-result-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.website-search-result-link {
    display: block;
    text-decoration: none;
    color: #0000ff;
    font-family: "MS Sans Serif", Arial, sans-serif;
    font-size: 11pt;
    font-weight: bold;
    margin-bottom: 2px;
}

.website-search-result-link:hover {
    text-decoration: underline;
}

.website-search-result-snippet {
    color: #666;
    font-family: "MS Sans Serif", Arial, sans-serif;
    font-size: 10pt;
    margin: 2px 0;
}

.website-content {
    flex: 1;
    padding: 20px;
}

.website-valkyrie-icon {
    height: 1em;
    width: auto;
}