div {
    box-sizing: border-box;
}

body {
    padding: 20px;
    margin: auto;
    width: 800px;
}

.content {
    display: flex;
}

.header {
    background-color: var(--white);
    display: flex;
    position: sticky;
    top: 0px;
    z-index: 1000;
}

.left {
    border-right: 1px dotted var(--darkbrown);
    width: 181px;
}

.left-header {
    width: 181px;
    padding-top: 3px;
    padding-bottom: 3px;
    border-bottom: 1px dotted var(--darkbrown);
    border-right: 1px dotted var(--darkbrown);
}

.left-header a:hover {
    -webkit-transition: 0.25s;
}

.left-header a:hover {
    opacity: 70%;
    -webkit-transition: 0.25s;
}

.button {
    padding-top: 5px;
}

.link-me {
    font-weight: bold;
    padding-bottom: 5px;
    text-align: center;
}

.feel-free {
    text-align: center;
    padding: 3px;
    border-bottom: 1px dotted var(--darkbrown);
}

.neighbors {}

.neighbors-title {
    font-weight: bold;
    font-weight: bold;
    text-align: center;
    padding: 3px;
    border-bottom: 1px dotted var(--darkbrown);
}

.neighbors-buttons {
    overflow: hidden;
    overflow-y: scroll;
    min-height: 299px;
    padding-top: 2px;
}

.neighbors-buttons::-webkit-scrollbar {
    width: 0px;
}

.neighbors-buttons a {
    text-decoration: none;
}

.neighbors-buttons img {
    filter: grayscale(100%) sepia(12%) brightness(108%);
    -webkit-transition: 0.25s;
}

.neighbors-buttons img:hover {
    filter: none;
    -webkit-transition: 0.25s;
}

.right {
    width: 619px;
}

.right-header {
    width: 619px;
    display: flex;
    position: sticky;
    top: 0px;
    z-index: 1000;
    background-color: var(--white);
}

.right-header .nav-link {
    border-right: 1px dotted var(--darkbrown);
    border-bottom: 1px dotted var(--darkbrown);
    color: var(--darkbrown);
    text-decoration: none;
    text-align: center;
    width: 100%;
    -webkit-transition: 0.25s;
}

.right-header .nav-link:hover {
    cursor: pointer;
    color: var(--white);
    background-color: var(--darkbrown);
    border: 1px dotted var(--white);
    border-top: none;
    border-left: none;
}

.dropdown:hover {
    cursor: default;
    letter-spacing: 1px;
    color: var(--white);
    -webkit-transition: 0.25s;
}

.nav-link:hover a.link {
    color: var(--white);
    letter-spacing: 1px;
    -webkit-transition: 0.25s;
}

.nav-link {
    position: relative;
}

.nav-link a {
    color: var(--darkbrown);
    text-decoration: none;
    display: block;
    padding-top: 3px;
    padding-bottom: 3px;
}

.dropdown-menu {
    background-color: var(--white);
    opacity: 0%;
    position: absolute;
    top: 100%;
    left: -1px;
    width: 89.58px;
    overflow: hidden;
    height: 0;
    transition: height 0.25s ease-out;
    border: 1px dotted var(--darkbrown);
}

.dropdown-menu a.dropdown-link {
    box-sizing: border-box;
    color: var(--darkbrown);
    height: 21px;
    width: 89.58px;
    border-bottom: 1px dotted var(--darkbrown);
    -webkit-transition: 0.25s;
}

a.dropdown-link:hover {
    letter-spacing: 1px;
    color: var(--white);
    background-color: var(--darkbrown);
    border-bottom: 1px dotted var(--white);
    -webkit-transition: 0.25s;
}

.nav-link:hover .dropdown-menu {
    opacity: 100%;
    height: var(--dropdown-height);
}

.dropdown:hover,
.nav-link:hover .dropdown,
.dropdown-menu:hover~.dropdown {
    color: var(--white);
    background-color: var(--darkbrown);
    letter-spacing: 1px;
    -webkit-transition: 0.25s;
}

.main-content {
    display: flex;
}

.main-content-left {
    padding-top: 10px;
    width: 442px;
}

.welcome {
    text-align: justify;
    padding: 10px;
    padding-top: 5px;
}

.updates iframe {
    box-sizing: border-box;
    border: none;
    width: 441px;
    height: 206px;
    margin-bottom: -2px;
}

.main-content-right {
    border-left: 1px dotted var(--darkbrown);
    width: 177px;
}

.name-header {
    font-weight: bold;
    text-align: center;
    padding: 3px;
}

.about-desc {
    border-bottom: 1px dotted var(--darkbrown);
    padding: 3px;
    text-align: center;
}

#github-activity {}

#github-username {
    color: var(--white);
    background-color: var(--darkbrown);
    padding: 3px;
}

#github-username a {
    color: var(--white);
    font-weight: bold;
    text-decoration: 1px dotted underline;
}

#github-content {
    background-color: var(--white);
    border-bottom: 1px dotted var(--darkbrown);
    padding: 5px;
    font-size: 11px;
    line-height: 1.4;
}

#github-content a {
    color: var(--darkbrown);
}

#github-content em {
    font-style: normal;
    color: #666;
}

.github-emoji {
    font-size: 12px;
}

.about-statuses-title {
    padding: 3px;
    font-weight: bold;
    text-align: center;
    border-bottom: 1px dotted var(--darkbrown);
}

.about-status {
    padding: 5px;
}

.featured-image {
    overflow: hidden;
    border-top: 1px dotted var(--darkbrown);
    width: 177px;
    height: 177px;
}

.featured-image img {
    filter: grayscale(100%) sepia(12%) brightness(108%);

    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: 0.25s;
}

.featured-image img:hover {
    -webkit-transition: 0.25s;
}

.featured-image a {
    text-decoration: none;
}

.footer {
    border-top: 1px dotted var(--darkbrown);
    display: flex;
    width: 800px;
}

.footer-left,
.footer-middle,
.footer-right {
    padding: 3px;
}

.footer-left {
    padding-left: 0px;
    width: 180px;
}

.footer a {
    color: var(--darkbrown);
    text-decoration: 1px dotted underline;
    -webkit-transition: 0.25s;
}

.footer a:hover {
    letter-spacing: 1px;
    -webkit-transition: 0.25s;
}

.footer-middle {
    text-align: center;
    width: 443px;
    border-left: 1px dotted var(--darkbrown);
}

.footer-right {
    padding: 3px;
    width: 176px;
    border-left: 1px dotted var(--darkbrown);
    padding-right: 0px;
}

/* On This Day Mobile Widget */
.on-this-day-widget {
    border: 1px dotted var(--darkbrown);
    background: rgba(255, 255, 255, 0.5);
}

.on-this-day-content {
    padding: 10px;
    font-size: 12px;
}

.on-this-day-list {
    max-height: 100px;
    overflow-y: auto;
}

.otd-entry {
    margin-bottom: 5px;
    display: flex;
    gap: 5px;
    align-items: baseline;
}

.otd-year {
    font-weight: bold;
    color: var(--gold);
    min-width: 40px;
}

.otd-type {
    color: var(--lightgold);
    font-size: 10px;
    min-width: 50px;
}

.otd-entry a {
    color: var(--darkbrown);
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.otd-entry a:hover {
    text-decoration: underline;
}

.otd-empty {
    color: var(--lightgold);
    font-style: italic;
    padding: 10px 0;
}

.otd-link {
    display: block;
    margin-top: 10px;
    color: var(--gold);
    text-decoration: none;
    font-size: 11px;
}

.otd-link:hover {
    text-decoration: underline;
}

/* Calendar clickable days */
#calendar td:not(.is-disabled) {
    cursor: pointer;
}

#calendar td:not(.is-disabled):hover {
    background-color: var(--gold);
    color: white;
}

/* Fix On This Day widget mobile layout */
@media (max-width: 480px) {
    .on-this-day-widget {
        width: 100%;
        box-sizing: border-box;
    }

    .on-this-day-content {
        padding: 8px;
        font-size: 11px;
    }

    .otd-entry {
        flex-wrap: wrap;
    }

    .otd-year {
        min-width: 35px;
        font-size: 11px;
    }

    .otd-type {
        min-width: 45px;
        font-size: 9px;
    }

    .otd-entry a {
        max-width: 100%;
        font-size: 11px;
    }
}

/* Last.fm Now Playing */
#lastfm-now-playing {
    display: flex;
    align-items: center;
    gap: 5px;
}

.music-icon {
    font-size: 14px;
    color: var(--gold);
}

pre {
    overflow: scroll;
    font-size: x-small;
}

pre {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

pre::-webkit-scrollbar {
    display: none;
}

/* Announcements / Board Section */
.announcements-section {
    margin-top: 10px;
    border: 1px dotted var(--darkbrown);
}

.announcements-header {
    font-weight: bold;
    text-align: center;
    padding: 3px;
    background-color: var(--darkbrown);
    color: var(--white);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.announcements-list {
    padding: 8px;
    font-size: 12px;
}

.announcement-entry {
    padding: 4px 0;
    border-bottom: 1px dotted var(--darkbrown);
    display: flex;
    gap: 8px;
    align-items: baseline;
}

.announcement-entry:last-child {
    border-bottom: none;
}

.announcement-tag {
    font-family: monospace;
    font-size: 10px;
    font-weight: bold;
    flex-shrink: 0;
}

.tag-announcement {
    color: #c9184a;
}

.tag-ad {
    color: #0969da;
}

.tag-project {
    color: #1a7f37;
}

.announcement-entry a {
    color: var(--darkbrown);
    text-decoration: none;
}

.announcement-entry a:hover {
    text-decoration: 1px dotted underline;
}
