* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Farb-Klassen */

:root {
    --accent-color: #007BFF;
    --accent-color-2: #0abcd6;
}

.blue-theme {
    --accent-color: #007BFF;
    --accent-color-2: #0abcd6;
    --accent-color-3: #7e2ffd;
}

.cyan-theme {
    --accent-color: #0abcd6;
    --accent-color-2: #7e2ffd;
    --accent-color-3: #007BFF;
}

.dark-blue-theme {
    --accent-color: #00C300;
    --accent-color-2: #7e2ffd;
    --accent-color-3: #0abcd6;
}

/* Globale Dinge */

.global-header {
    background-color: #101010;
    border-bottom: 2px solid var(--accent-color);
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 10;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.header-link {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.header-link:hover {
    cursor: pointer;
}

a.header-link {
    text-decoration: none;
}

.logo img {
    max-width: 50px;
    height: auto;
}

#header-container {
    width: 100%;
}

.header-login-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    gap: 8px;
    padding: 20px;
}

a.header-login-container {
    text-decoration: none;
}

.header-login-text {
    color: var(--accent-color);
}

.profile-picture-header {
    height: 50px;
    width: auto;
}

.header-dashboard-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: fixed;
    left: 0;
    gap: 8px;
    padding: 20px;
}

a.header-dashboard-container {
    text-decoration: none;
}

.header-dashboard-text {
    color: var(--accent-color);
}

.main-site-title {
    color: var(--accent-color);
}

.global-footer {
    background-color: #101010;
    border-top: 2px solid var(--accent-color);
    padding: 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    z-index: 10;
}

.footer-container {
    color: var(--accent-color);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#footer-container {
    width: 100%;
}

a.footer-link {
    text-decoration: none;
    color: var(--accent-color);
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1b1b1b;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    padding-top: 96px;
    padding-bottom: 60px;
    /* Hier muss die Höhe des Footers eingetragen werden */
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#main-container {
    background-color: #1b1b1b;
}

/* Error Display */

.error-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.error-title {
    color: var(--accent-color-2);
}

.error-message {
    color: var(--accent-color);
}

.error-message-container {
    color: #FF0000;
    display: none;
    padding: 20px 0;
    font-size: 1.5rem;
    flex-direction: column;
}

.impressum-disclaimer {
    color: var(--accent-color);
    padding-top: 16px;
}

/* 404 Page */

.e404-message-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.e404-logo {
    max-width: 50%;
    height: auto;
}

.e404-message {
    color: #007BFF;
    font-size: 1rem;
}

/* Homepage */

a.site-box {
    text-decoration: none;
    color: inherit;
}

.site-boxes {
    display: flex;
    flex-direction: row;
    width: 616px;
    gap: 16px;
    justify-content: center;
    align-items: stretch;
}

.site-box {
    display: flex;
    flex-direction: column;
    background-color: #101010;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 16px;
    max-width: 300px;
    text-align: center;
    cursor: pointer;
    flex: 1 1 0;
}

.site-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(10, 189, 198, 0.3);
}

.site-box-logo {
    max-width: 100%;
    height: auto;
}

.site-box-content {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    gap: 8px;
}

.site-box-title {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.site-box-title h2 {
    color: var(--accent-color-2);
    font-size: 1.5rem;
    text-align: center;
}

/* Info-Boxen */

a.info-box {
    text-decoration: none;
    color: inherit;
    display: block;
}

.info-boxes {
    width: 90%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-box {
    background-color: #101010;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    /* Ist für die Abrundung der Box zuständig */
    padding: 16px;
    /* Abstand innen */
    text-align: center;
    cursor: pointer;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(10, 189, 198, 0.3);
}

.info-box-logo {
    max-width: 100px;
    height: auto;
}

a.info-box h2 {
    color: var(--accent-color-2);
    font-size: 1.5rem;
}

a.info-box p {
    color: #007BFF;
    font-size: 1em;
}

.info-box-content {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.info-box-text {
    display: flex;
    flex-direction: column;
    margin-left: 16px;
    flex: 1;
}

.info-box-seperator {
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    margin: 6px 0;
}

/* Interactive Guide */

.top-area {
    display: flex;
    flex-direction: row;
    padding: 20px;
    justify-content: space-between;
}

.side-section {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    gap: 10px;
    height: 100%;
}

#side-section-left {
    position: fixed;
    left: 0;
}

#side-section-right {
    position: fixed;
    right: 0;
}

.middle-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    gap: 16px;
}

.grid-row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.content-section {
    background-color: #1b1b1b;
    flex: 1;
    margin: 0 auto;
    overflow-x: auto;
    max-width: calc(100vw - 146.25px - 156.266px - 8px - 12px);
    /* 8px sind prob für die Ränder der Boxen, 12px für die Breite der Scrollbar */
}

/* Columns */

.multiple-columns {
    flex-direction: row;
    display: flex;
    gap: 16px;
    height: fit-content;
}

.column-type-A {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    background-color: #1b1b1b;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
}

.column-type-B {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.column-type-A h2 {
    color: var(--accent-color-2);
    font-size: 1.5rem;
    text-align: center;
}

.button-text {
    color: #007BFF;
    font-size: 1rem;
    font-weight: bold;
}

.button-column-4,
.button-column-1,
.button-column-3 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.image-button,
.image-button-2 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px;
    border: none;
    background-color: #1b1b1b;
    cursor: pointer;
    border-radius: 8px;
}

.image-button:hover .button-image {
    background-color: var(--accent-color);
    border-radius: 8px;
    padding: 2px;
}

.button-image {
    max-width: 100px;
    height: auto;
    border-radius: 8px;
}

.button-image-2 {
    max-width: 200px;
    aspect-ratio: 600/940;
}

.button-image-3 {
    max-width: 300px;
    border-radius: 8px;
    aspect-ratio: 1432/540;
    /* Es funktioniert aus irgendeinem Grund nur wenn 
                                hier das exakte Seitenverhältnis der Shadow 
                                Bilder steht */
}

.image-button-2 {
    display: flex;
    flex-direction: column;
}

/* Pop-Up */

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 2500px;
    max-height: 80%;
    background-color: #1b1b1b;
    border-radius: 8px;
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
}

.popup-header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 16px;
    position: relative;
}

.popup-header .close-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #AAAAAA;
    font-size: 24px;
}

.popup-header .close-btn:hover {
    cursor: pointer;
    color: #FFFFFF;
    text-decoration: none;
}

.popup-header .image-popup-title {
    color: #007BFF;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

#image-popup .image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    justify-items: center;
}

#image-popup .image-popup-content img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    max-width: 100px;
}

.image-container {
    text-align: center;
    margin: 10px;
}

.image-container:hover {
    cursor: pointer;
    transform: translateY(-5px);
}

.image-container img {
    width: 100px;
    height: auto;
    cursor: pointer;
}

.image-container p {
    margin-top: 5px;
    color: var(--accent-color);
    text-align: center;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}

/* Switch-Mode Button */

.toggle-mode {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    width: 100px;
    height: 25px;
    cursor: pointer;
}

.hunter-mode-SSR,
.hunter-mode-SR {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
}

.hunter-mode-SSR {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: #FF292A;
}

.hunter-mode-SR {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    background-color: #9779D2;
}

.hunter-mode-SSR.active {
    transform: scale(120%);
}

.hunter-mode-SR.active {
    transform: scale(120%);
}

/* Submit-Button */

.button-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
}

.submit-button,
.options-button {
    font-size: 1.25rem;
    color: var(--accent-color);
    background-color: #101010;
    border: 2px solid var(--accent-color);
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 8px;
    text-align: left;
}

/* Options */

#export-button {
    display: none;
}

.options-button {
    font-size: 1rem;
}

.options-popup {
    width: auto;
}

.options-popup-title {
    color: var(--accent-color-2);
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.options-popup-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Buffs */

.buff-popup {
    width: auto;
    min-width: 500px;
}

.buff-popup-title {
    color: var(--accent-color-2);
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.buff-popup-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.choices-title-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.choices-title {
    color: var(--accent-color-2);
    font-size: 1.25rem;
    font-weight: bold;
}

.choices-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.choice-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.choices-buttons {
    display: flex;
    flex-direction: row;
    gap: 1px;
}

#choice-button-reset {
    width: auto;
    padding: 2px;
    background-color: #4a4745;
}

.choice-button {
    border: 2px solid #007BFF;
    font-weight: bold;
    background-color: #1b1b1b;
    color: #007BFF;
    height: 25px;
    width: 25px;
    align-items: center;
}

.choice-button:hover {
    cursor: pointer;
}

.choice-text {
    color: #007BFF;
    font-weight: bold;
}

/* Enhancement Tiers */

#enhancement-tiers-container {
    display: none;
}

.enhancement-tier-choices-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.enhancement-tier-divider {
    height: 2px;
    background-color: var(--accent-color);
    width: 100%;
    margin: 4px 0px;
}

.enhancement-tier-divider-vertical {
    align-self: stretch;
    background-color: var(--accent-color);
    width: 2px;
    margin: 0px 4px;
}

.enhancement-tier-choices-container-name {
    color: var(--accent-color-2);
    font-size: 1.125rem;
    font-weight: bold;
}

.enhancement-tier-2choice-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 48px;
}

.enhancement-tier-choice-container {
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.enhancement-tier-choice-container-name {
    color: var(--accent-color);
    font-weight: bold;
}

.enhancement-tier-choice-slider-text {
    color: var(--accent-color);
    font-weight: bold;
}

/* Slider */

.settings-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.setting {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 4px;
    border: 2px solid var(--accent-color);
    padding: 12px;
}

.setting h3 {
    color: var(--accent-color-2);
    font-size: 1.25rem;
    font-weight: bold;
}

.slider-container {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.slider-text {
    color: #007BFF;
    font-size: 1rem;
    font-weight: bold;
}

.slider {
    appearance: none;
    border-radius: 15px;
    background-color: #101010;
    cursor: pointer;
    max-width: 75px;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    height: 17.5px;
    width: 17.5px;
    background: #007BFF;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Scrollbar */

::-webkit-scrollbar {
    height: 12px;
    width: 12px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #141414;
    border-radius: 6px;
}

/* Results */

#result-section {
    display: none;
    padding-top: 20px;
    /* Abstand zwischen den beiden Sections */
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#result-section h1 {
    color: var(--accent-color-2);
    font-weight: bold;
    font-size: 1.75rem;
}

/* Hunter-Stats */

.multiple-stats {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 200px;
}

.stat-container {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    justify-content: space-between;
}

.stat-icon {
    max-width: 25px;
    height: auto;
}

.stat-name {
    color: #007BFF;
    font-weight: bold;
    margin-right: auto;
}

.stat-value {
    color: #FFFFFF;
    margin-left: auto;
}

/* Set-Effects */

#set-effects-column {
    max-width: 50vw;
    min-width: 400px;
}

.set-effects {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.set-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 2px solid #007BFF;
    border-radius: 6px;
    padding: 8px;
}

.set-top-container {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.set-icon {
    max-width: 50px;
    height: auto;
}

.set-name-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: center;
}

.set-name {
    color: #007BFF;
    font-weight: bold;
}

.set-effect-name {
    color: #0abcd6;
}

.set-divider {
    height: 2px;
    background-color: #007BFF;
    width: 100%;
    margin: 4px 0px;
}

.set-effect-text-container {
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.set-effect-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.set-effect-active {
    color: #FFFFFF;
}

.set-effect-inactive {
    color: #7b7b7b;
}

/* Extra Information */

.extra-text {
    color: #FFFFFF;
}

/* Results Breakdown */

.content-rows {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: fit-content;
}

.content-row-type-A {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: center;
}

.row-title h1 {
    color: var(--accent-color);
    font-size: 1.75rem;
    cursor: default;
}

#breakdown-button {
    display: none;
}

.breakdown-box {
    display: flex;
    flex-direction: column;
    background-color: #101010;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    gap: 4px;
    min-width: 400px;
}

.breakdown-divider,
.breakdown-divider-2 {
    height: 2px;
    background-color: #007BFF;
    width: 100%;
    margin: 4px 0px;
}

.breakdown-content-box {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.breakdown-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.breakdown-effects-secondary {
    display: flex;
    flex-direction: column;
}

.breakdown-effect-primary,
.breakdown-effect-secondary {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #FFFFFF;
}

.text-button {
    color: #007BFF;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    background-color: #1b1b1b;
}

.breakdown-text {
    color: #FFFFFF;
}

.breakdown-list {
    list-style-position: inside;
}

/* Multiple Rows */

.multiple-rows {
    flex-direction: column;
    display: flex;
    gap: 16px;
    height: fit-content;
    width: 100%;
}

.row-type-A {
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding: 20px;
    background-color: #1b1b1b;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    align-items: center;
}

.row-type-B {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.row-type-A h2 {
    color: var(--accent-color-2);
    font-size: 1.5rem;
    text-align: center;
}

.vertical-divider {
    width: 2px;
    margin: -8px 8px;
    background-color: var(--accent-color);
    align-self: stretch;
}

/* Login */

.login-page-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.login-image {
    max-height: 450px;
    width: auto;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.login-container h2 {
    color: var(--accent-color);
}

.login-container-input-container {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.login-container-input {
    background-color: #1b1b1b;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    height: 25px;
    max-width: 150px;
    padding: 2px;
    color: var(--accent-color);
}

.login-button {
    font-size: 0.75rem;
    color: var(--accent-color);
    background-color: #101010;
    border: 2px solid var(--accent-color);
    cursor: pointer;
    padding: 0px 4px;
    border-radius: 4px;
    text-align: left;
    height: 25px;
    width: auto;
}

/* Memes */

.meme-input-form {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: stretch;
    align-items: stretch;
}

.meme-input-meme-button {
    padding: 12px;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    background-color: #1b1b1b;
}

.meme-input-meme-button:hover {
    cursor: pointer;
}

.meme-input-meme {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.meme-input-data {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.meme-input-data-field {
    background-color: #1b1b1b;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    height: 25px;
    padding: 2px;
    color: var(--accent-color);
    flex: 1;
}

.meme-input-data-textarea {
    background-color: #1b1b1b;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    flex: 1;
    width: 400px;
    padding: 2px;
    color: var(--accent-color);
    word-wrap: break-word;
    white-space: pre-wrap;
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
    overflow-y: auto;
}

.meme-input-data-textarea:focus {
    border: 2px solid #00ff22;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
}

.meme-input-data-field-container-sr,
.meme-input-data-field-container-wr {
    display: flex;
    gap: 4px;
}

.meme-input-data-field-container-sr {
    flex-direction: column;
    flex: 1;
}

.meme-input-data-field-container-wr {
    flex-direction: row;
    align-items: center;
}

.meme-input-data-name {
    color: var(--accent-color);
    font-weight: bold;
}

/* Meme Viewer Popup */

.meme-viewer-popup {
    display: flex;
    overflow: hidden;
}

.meme-viewer-meme {
    flex: 1;
    pointer-events: auto;
    user-select: none;
    max-width: none;
    cursor: grab;
}

/* Messages */

.messages-overview {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 750px;
}

.message-box {
    display: flex;
    background-color: #1b1b1b;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    width: 100%;
    padding: 2px;
    flex-direction: row;
    cursor: pointer;
    max-height: 102px;
    gap: 12px
}

.message-box-img {
    max-width: 100px;
    max-height: 100px;
}

.message-box-divider {
    align-self: stretch;
    background-color: var(--accent-color-3);
    width: 2px;
    margin: 4px 0px;
}

.message-box-content {
    display: flex;
    flex-direction: column;
    padding: 4px;
    justify-content: space-between;
    flex-grow: 1;
}

.message-box-title-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.message-box-title {
    color: var(--accent-color-2);
}

.message-box-time-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.message-box-info-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.message-box-info {
    color: #4a4745;
}

.message-box-sending-info-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.message-box-empty-message {
    color: var(--accent-color);
    font-weight: bold;
    font-size: large;
}

/* Message-Popup */

#message-popup {
    display: none;
}

.message-popup-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.message-popup-content-main {
    display: flex;
    border: 2px solid var(--accent-color-3);
    border-radius: 8px;
    padding: 16px;
}

.message-popup-content-main-text {
    color: var(--accent-color);
    font-size: large;
    white-space: pre-wrap;
    background-color: #1b1b1b;
    width: 600px;
    height: 400px;
    word-wrap: break-word;
    overflow-y: auto;
    font-family: Arial, Helvetica, sans-serif;
    border: none;
}

.message-popup-content-main-text:focus {
    outline: none;
    box-shadow: none;
}

.message-popup-footer-text {
    color: var(--accent-color);
    font-size: large;
}

.message-popup-footer-info {
    color: var(--accent-color);
    font-size: large;
    border: 2px solid var(--accent-color-3);
    border-radius: 4px;
    padding: 2px;
    background-color: #1b1b1b;
}

.message-popup-footer {
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: space-between;
}

.message-popup-footer-content, .message-popup-title-content {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
}

.message-popup-footer-info-growing {
    flex-grow: 1;
}

/* Write Message Popup */

#write-message-popup {
    display: none;
}

.write-message-popup-header {
    justify-content: space-between;
}

.write-message-popup-input {
    color: var(--accent-color);
    font-size: large;
    border: 2px solid var(--accent-color-3);
    border-radius: 4px;
    padding: 2px;
    background-color: #1b1b1b;
    width: 500px;
}

.write-message-popup-input:focus {
    outline: none;
    box-shadow: none;
}

.write-message-popup-footer {
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: space-between;
}

/* SMARTS/SMILES Renderer */

.renderer-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.renderer-input {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.renderer-input-controls-container {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
}

.renderer-output {
    display: flex;
    flex-direction: column;
}

#renderer-output-image-container {
    display: none;
}

#renderer-error-output-container {
    display: none;
}