body {
    font-family: "Outfit", Arial, sans-serif;
    margin: 0;
    padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}
#nav {
    top: 0px;
    position: sticky;
    z-index: 1000;
    background-color: #333;
    color: #fff !important;
    padding: 16px 0;
    display: flex;
    align-items: center;
}
#nav-left {
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 16px;
    width: 50vw;
}
#nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}
#nav-logo:hover {
    filter: brightness(0.8);
}
#name {
    font-size: 16px;
}
#nav-right {
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 16px;
    width: 50vw;
    justify-content: flex-end;
}
#nav-right a,
#name {
    color: white !important;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}
#nav-right a:hover,
#name:hover {
    color: #6f91ff !important;
}
.highlight {
    color: #6f91ff;
}
.highlight2 {
    color: #6f91ff;
    font-family: "Kaushan Script", cursive !important;
}
#content {
    padding-left: calc(50vw - 400px);
    padding-right: calc(50vw - 400px);
    padding-top: 64px;
    padding-bottom: 100px;
    display: flex;
    margin: auto;
    flex-direction: column;
    min-height: 50vh;
}
a {
    color: #333333;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}
a:hover {
    color: #6f91ff;
}
.search-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}
#searchBar {
    padding: 10px;
    margin: 5px 0;
    border: 2px solid #6f91ff;
    border-radius: 10px;
    width: calc(100% - 20px);
}
#modeSelect {
    padding: 10px;
    margin: 5px 0;
    border: 2px solid #6f91ff;
    border-radius: 10px;
    background-color: #6f91ff;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}
#modeSelect:hover {
    background-color: #4b6abf;
    color: white !important;
}
#message {
    display: flex;
    align-items: center;
    background-color: #6f91ff;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
}
.result-item {
    display: flex;
    align-items: center;
    background-color: #eee;
    color: black;
    padding: 10px;
    margin: 10px 0;
    border-radius: 10px;
}
.result-item img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.result-item img:hover {
    filter: brightness(0.8);
}
.details {
    flex: 1;
    text-align: left;
}
.go-button {
    padding: 10px;
    border: 2px solid #6f91ff;
    border-radius: 10px;
    background-color: #6f91ff;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: auto;
}
.go-button:hover {
    background-color: #4b6abf;
    color: white !important;
}
#footer {
    background-color: #333;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
#footer-top {
    display: flex;
    gap: 20px;
    align-items: center;
}
#footer-top img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}
#footer-top img:hover {
    filter: brightness(0.8);
}
#fcolumns {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.fcolumn {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.fcolumn a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}
.fcolumn a:hover {
    color: #6f91ff;
}
.copy,
.unsp {
    color: #5f5f5f;
}
.unsp a {
    color: #5f5f5f;
    text-decoration: none;
    transition: all 0.3s ease;
}
.unsp a:hover {
    color: #4b6abf;
}
.mode-toggle2 {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: rgb(255, 255, 255, 0);
    height: 10px;
    display: flex;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
}
#modeSelect2 {
    background-color: rgb(255, 255, 255, 0);
    color: rgb(255, 255, 255, 0);
    border: none;
    height: 30px;
    padding: 0 10px;
    font-size: 14px;
}
.tags-container {
    margin: 5px 0;
    display: flex;
    gap: 10px;
}

.tag {
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 3px;
    text-transform: capitalize;
    background: var(--tag-background, #ffffff);
    color: var(--tag-color, #000000);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hsplit {
    display: flex;
    gap: 10px;
    align-items: center;
}
