:root {
    /* Dark mode (default) */
    --bg-color: #000;
    --text-color: #fff;
    --secondary-bg: #202020;
    --border-color: #202020;
    --separator-color: rgba(255, 255, 255, 0.227);
    --input-bg: #ffffff;
    --input-text: #f5014f;
    --placeholder-color: rgb(190, 190, 190);
    --grid-item-bg: #ffffff12;
    --grid-item-text: #d8dcde;
    --modal-bg: rgba(0, 0, 0, 0.5);
    --modal-content-bg: #fefefe;
    --menu-bg: black;
    --menu-text: white;
    --menu-box-bg: #202020;
    --menu-box-text: white;
    --menu-box-hover: rgba(255, 255, 255, 0.632);
    --shadow-color: rgba(0, 0, 0, 0.2);
    --arrow-color: rgba(255, 255, 255, 0.6);
    --interactive-bg: #202020;
    --button-bg: #000;
    --footer-terms-color: rgba(255, 255, 255, 0.37);
    --not-logged-in: #575656;
}

[data-theme="light"] {
    --bg-color: #f5f5f5;
    --text-color: #2c2c2c;
    --secondary-bg: #e8e8e8;
    --border-color: #d0d0d0;
    --input-bg: #ffffff;
    --input-text: #2c2c2c;
    --placeholder-color: #888888;
    --grid-item-bg: #ffffff;
    --grid-item-text: #2c2c2c;
    --modal-bg: rgba(0, 0, 0, 0.3);
    --modal-content-bg: #ffffff;
    --menu-bg: #f5f5f5;
    --menu-text: #2c2c2c;
    --menu-box-bg: #ffffff;
    --menu-box-text: #2c2c2c;
    --menu-box-hover: rgba(0, 0, 0, 0.8);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --arrow-color: rgba(0, 0, 0, 0.4);
    --interactive-bg: #ffffff;
    --icon-color: #2c2c2c;
    --button-bg: #ffffff;
    --separator-color: #d0d0d0;
    --footer-terms-color: rgba(0, 0, 0, 0.37);
    --not-logged-in: #b3b1b1;
}

[data-theme="light"] .grid-item div {
    background-color: #ffffff !important;
}

body {
    font-family: Poppins, system-ui, -apple-system;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overscroll-behavior-x: none;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    background-color: var(--bg-color);
    color: var(--text-color);
}

button,
a,
img,
p,
h1,
h2 {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* pointer-events: auto; */
}

h2 {
    font-weight: 900;
    font-size: 4.5vh;
}

a:link {
    color: #fbdb94;
    /* color: #3fd2ff; */
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: #fbdb94;
    /* color: #3fd2ff; */
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: #fbdb94;
    /* color: #3fd2ff; */
    background-color: transparent;
    text-decoration: none;
}

a:active {
    color: #fbdb94;
    /* color: #3fd2ff; */
    background-color: transparent;
    text-decoration: none;
}

* {
    -webkit-tap-highlight-color: transparent;
}

.inactive {
    opacity: 0.3;
}

.addPlusRounded {
    background-image: url(../images/iconPlug.svg);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: 90% 15%;
}

#nav {
    position: fixed;
    background-color: var(--bg-color);
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 8888;
    padding: 5px 5px 0 5px;
}

#dspInfoBox {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.artistDspButton {
    cursor: pointer;
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: 6px center;
    border-radius: 50px;
    background-color: #000;
    border: 1px solid #333333;
    color: white;
    padding: 5px 10px 5px 25px;
    font-size: 10px;
    width: 100px;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    z-index: 2000;
}

.container {
    padding: 20px;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    background-color: var(--bg-color);
    min-height: 100vh;
}

.container.visible {
    opacity: 1;
    /* Show with fade-in */
}

.title {
    text-align: center;
    color: var(--text-color);
    font-weight: 900;
    font-size: 40px;
}

.search-bar {
    display: flex;
    justify-content: center;
    /* margin-bottom: 20px; */
}

.search-bar input {
    width: 285px;
    padding: 10px;
    font-size: 16px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    background-color: var(--input-bg);
    color: var(--input-text);
    font-weight: 500;
    font-family: system-ui;
}

input::placeholder {
    color: var(--placeholder-color);
    opacity: 1;
}

#artistSearchInput {
    color: rgb(190, 190, 190);
    /* Change this to your desired color */
}


.filter-bar {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

.filter-bar .filter-button {
    margin: 4px;
    cursor: pointer;
    font-size: 15px;
    border-radius: 20px;
    background-color: var(--button-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 20px 0;
    width: 100%;
    box-shadow: 0 2px 4px var(--shadow-color);
}

.filter-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.filter-bar .filter-button.active {
    border: 2px solid var(--text-color);
    box-shadow: 0 4px 8px var(--shadow-color);
}

#filterLabel,
#sortLabel {
    color: var(--text-color);
    display: block;
    font-size: 20px;
    text-align: left;
    margin-bottom: 10px;
    font-weight: 900;
}

.standardButton {
    margin: 4px;
    cursor: pointer;
    font-size: 25px;
    /* border-width: 0px; */
    border-radius: 50px;
    color: white;
    border-color: #007BFF;
    background-color: #007BFF;
    padding: 11px 16px;
    width: 70%;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 10px 50px;
    grid-auto-rows: 1fr;
}

.grid-item {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    /* justify-content: space-between; */
    text-align: center;
    align-items: flex-end;
    height: 100%;
}

.grid-item img {
    width: auto;
    height: 85px;
    /* max-height: 85px; */
    margin: 0px;
    /* border-radius: 50%; */
    /* border-top-left-radius: 0.5em;
    border-bottom-left-radius: 0.5em; */
    object-fit: cover;
    aspect-ratio: 1/1;
    /* aspect-ratio: 2.2/3; */
}

.grid-item div {
    height: 85px;
    margin: 0;
    margin-left: 10px;
    margin-right: 5px;
    padding: 2px 2px 2px 8px;
    text-align: left;
    background-color: var(--grid-item-bg);
    color: var(--grid-item-text);
    font-size: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-weight: 600;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    box-shadow: 0 2px 4px var(--shadow-color);
    border: none;
}

/* .grid-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.grid-item:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
} */

.rowContent {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.additional-filters {
    display: none;
}

.additional-filters.visible {
    display: flex;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9005;
    left: 0;
    top: 0;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    padding-top: 60px;
    overflow: hidden;
}

#musicServiceModal {
    visibility: hidden;
}

#musicServiceModal.show {
    display: flex;
    visibility: visible;
    animation: fadeinModal 1.5s
}

.modal-content {
    background-color: #fefefe;
    color: black;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 350px;
    text-align: center;
    border-radius: 20px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #aaaaaadf;
    text-decoration: none;
    cursor: pointer;
}

#urlInput {
    width: calc(100% - 20px);
    padding: 10px;
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 16px;
    border: none;
    background-color: #ededed;
}

.okButton {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
}

.okButton:hover {
    background-color: #0056b3;
}

#pasteButton {
    padding: 11px 16px;
    /* font-size: 10px; */
    border: none;
    /* border-radius: 0; */
    background-color: #0f2b46;
    color: white;
    cursor: pointer;
}

#pasteButton:hover {
    background-color: grey;
}

/* Full-screen loading overlay */
#loading {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    /* Semi-transparent background */
    z-index: 9999;
    /* Ensure it appears on top */
    display: flex;
    flex-direction: column;
    /* Stack spinner and text vertically */
    justify-content: center;
    align-items: center;
}

/* Full-screen loading overlay */
#loadingWithButton {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    /* Semi-transparent background */
    z-index: 9999;
    /* Ensure it appears on top */
    display: flex;
    flex-direction: column;
    /* Stack spinner and text vertically */
    justify-content: center;
    align-items: center;
}

/* Spinner style */
.spinner {
    border: 8px solid #f3f3f3;
    /* Light gray */
    border-top: 8px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

#userInfoButton,
#feedbackButton {
    background-color: transparent;
    color: white;
    border: none;
    padding-left: 0;
}

/* User Menu Styling */
#userMenu {
    display: none;
    position: fixed;
    inset: 0;
    /* replaces top:0, left:0, height:100vh */
    height: 100vh;
    width: 100%;

    flex-direction: column;
    align-items: stretch;
    /* <-- THIS fixes your narrow content issue */

    background-color: var(--menu-bg);
    color: var(--menu-text);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 9001;
    box-sizing: border-box;
}

/* Prevent background scrolling when menu is open */
body.menu-open {
    overflow: hidden;
}

.userMenuLogoutContainer {
    display: flex;
    align-items: center;
    gap: 5px;
}

#userMenuLogoutContainer1 {
    display: none;
}

#userMenuLogoutContainer2 {
    display: none;
}

/* Grey boxes for content */
.userMenuBox {
    width: 100%;
    background: var(--interactive-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px;
    border-radius: 10px;
    margin-bottom: 5px;
    box-shadow: 0 2px 4px var(--shadow-color);
    border: 1px solid var(--border-color);

    p {
        margin: 0;
        padding: 8px 0;
    }

    a {
        color: var(--menu-box-text);
        text-decoration: none;
        display: block;
        text-align: left;
        font-weight: 500;
        width: 100%;
        max-width: 200px;
        transition: all 0.3s ease;
    }

}

/* Grey boxes for content */
.userMenuBox2 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    margin-bottom: 15px;
    margin-top: 5px;
    box-shadow: 0 2px 4px var(--shadow-color);
    border: 1px solid var(--border-color);

    p {
        margin: 0;
        padding: 0;
    }

    a {
        color: var(--menu-box-text);
        text-decoration: none;
        display: block;
        text-align: left;
        font-weight: 500;
        width: 100%;
        max-width: 200px;
        transition: all 0.3s ease;
        padding: 5px 0;
    }

}

.userMenuBox3 {
    width: 100%;
    background: var(--interactive-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px;
    border-radius: 10px;
    margin-bottom: 5px;
    box-shadow: 0 2px 4px var(--shadow-color);
    border: 1px solid var(--border-color);

    p {
        margin: 0;
        padding: 0;
    }

    a {
        color: var(--menu-box-text);
        text-decoration: none;
        display: block;
        text-align: left;
        font-weight: 500;
        width: 100%;
        max-width: 200px;
        transition: all 0.3s ease;
    }

}

.combinedMenuBox {
    display: flex;
    width: 100%;
    flex-direction: column;
    background: var(--interactive-bg);
    border-radius: 10px;
    padding: 3px 12px;
    box-shadow: 0 2px 4px var(--shadow-color);
    border: 1px solid var(--border-color);
}

/* Each row */
.menuItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--separator-color);
    width: 100%;
    height: 42px;
}

/* Remove the border from the last item */
.menuItem:last-child {
    border-bottom: none;
}

/* Style for the links */
.menuItem a {
    text-decoration: none;
    color: var(--menu-box-text);
    font-weight: 500;
    flex-grow: 1;
    text-align: left;
    padding: 9px 0;
}

.userMenuArrow {
    font-size: 25px;
    color: var(--arrow-color);
}

/* Scrollbar styling */
#userMenu::-webkit-scrollbar {
    width: 8px;
}

#userMenu::-webkit-scrollbar-thumb {
    background: grey;
    border-radius: 10px;
}

#userMenuHeader {
    position: sticky;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: var(--menu-bg);
    z-index: 100;
    padding: 10px 20px;
}

#userMenuHeader .close {
    position: relative;
    font-size: 24px;
    cursor: pointer;
}

#userMenuContent * {
    box-sizing: border-box;
}

#userMenuContent {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 16px;
}

.username-label {
    text-align: left;
    white-space: pre-wrap;
    margin: 0;
    line-height: 1.3;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 500;
    display: block;
}

#chat-icon {
    color: var(--text-color)
}

/* Settings Header 'Verbunden mit'*/
.settings-header {
    display: block;
    text-align: left;
    font-size: 13px;
    font-weight: normal;
    color: var(--menu-box-hover);
    padding-left: 14px;
}

#verbunden-mit {
    margin-top: 0px;
}

#logoutDspLink1 {
    color: var(--menu-box-hover);
    font-weight: 400;
    background: transparent;
    font-size: 15px;
}

#logoutDspLink2 {
    color: var(--menu-box-hover);
    font-weight: 400;
    background: transparent;
    font-size: 15px;
}

#loginDspLink1 {
    color: var(--menu-box-text);
    font-weight: 500;
    background: transparent;
    font-size: 17px;
}

#loginDspLink2 {
    color: var(--menu-box-text);
    font-weight: 500;
    background: transparent;
    font-size: 17px;
}

#search-bar {
    position: relative;
    /* width: 100%;
    max-width: 350px; */
    margin: 10px auto;
    /* Center the search bar on the screen */
    flex-grow: 0.5;
}

#searchInput {
    width: 100%;
    padding-right: 40px;
    /* Adjust padding to make space for the clear button */
    box-sizing: border-box;
}

#searchInput {
    -webkit-touch-callout: none;
    user-select: none;
    padding-left: 30px;
    /* Adjust padding to make room for the icon */
    background-image: url('../images/searchIcon24px-grey.svg');
    /* Material search icon URL */
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: 4px center;
}

#artistSearchButton {
    position: relative;
    background-color: #f5014f;
    font-size: 20px;
    margin-top: 20px;
    color: white;
    max-width: 340px;
    border: none;
    -webkit-touch-callout: none;
    user-select: none;
    background-image: url('../images/manageSearchIcon24px-white.svg');
    background-size: 35px;
    background-repeat: no-repeat;
    background-position: 15px center;
    border-radius: 5px;
    padding: 13px 20px 13px 60px;
    box-shadow: 0 4px 8px var(--shadow-color);
    text-align: center;
}

#pasteButton2 {
    background-image: url('../images/iconPaste.svg');
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: 10px center;
    padding: 11px 5px;
}

#clearButton {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-40%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: none;
    color: lightgray;
}

#searchInput:not(:placeholder-shown)~#clearButton {
    display: block;
}

/* Animation for the spinner */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Loading text style */
.loading-text {
    margin-top: 20px;
    /* Space between spinner and text */
    font-size: 24px;
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 0 20px;
}

.loading-text-sub {
    margin-top: 10px;
    /* Space between spinner and text */
    font-size: 24px;
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 0 25px;
}

/* Snackbar Styling */
#snackbar {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 16px;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9000;
    font-size: 18px;
}

[data-theme="light"] #snackbar {
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 -4px 8px rgba(0, 0, 0, 0.1);
}

#snackbar.show {
    visibility: visible;
    animation: fadeinSnack 1.0s
}

/* Modal Styling */
#modal-install {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

#modal-content-install {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 300px;
    text-align: center;
    border-radius: 8px;
}

#closeModal-install {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}

@keyframes fadeinSnack {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadeinModal {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#installButton {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 8px;
}

#installButton:hover {
    background-color: #0056b3;
}

.spinner-install {
    border: 2px solid #f3f3f3;
    /* Light grey */
    border-top: 2px solid #007bff;
    /* Blue */
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin-install 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes spin-install {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Toggle Switch Container */
.toggle-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 15px 0;
    cursor: pointer;
    margin-bottom: -5px;
}

/* Label Style */
.toggle-label {
    font-size: 15px;
    color: var(--text-color);
    font-weight: 500;
    text-align: left !important;
}

/* Wrapper for clickable toggle */
.toggle-wrapper {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 20px;
    left: -20px;
}

.toggle-wrapper:focus,
.toggle-wrapper:focus-visible,
.toggle-slider:focus,
.toggle-slider:focus-visible {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* Hide Default Checkbox */
.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.toggle-input:focus:not(:focus-visible) {
    outline: none;
}

/* Slider (Toggle Switch) */
.toggle-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ccc;
    border-radius: 20px;
    transition: 0.3s;
    cursor: pointer;
}

/* Circle inside the toggle */
.toggle-slider::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: 0.3s;
}

/* Checked state */
.toggle-input:checked+.toggle-slider {
    background-color: #19922f;
    /*  background-color: rgb(30, 215, 96); */
    /* Active color */
}

/* Move the circle when checked */
.toggle-input:checked+.toggle-slider::before {
    transform: translateX(20px);
}

/* Small Info Text Below Toggle */
.toggle-info {
    display: block;
    text-align: left;
    font-size: 11px;
    color: var(--menu-box-hover);
    padding-bottom: 10px;
    padding-left: 14px;
    margin-top: -3px;
}

.otherServiceButton {
    color: var(--text-color);
    border: 3px solid white;
    width: 240px;
    height: 70px;
    padding: 0;
}

.musicServiceModalTitle {
    color: var(--text-color);
}

.musicServiceModal {
    background-color: var(--bg-color);
}

.musicServiceModalContent {
    background-color: var(--bg-color);
}

[data-theme="light"] .material-symbols-rounded {
    color: var(--icon-color);
}

[data-theme="light"] #userInfoButton,
[data-theme="light"] #feedbackButton {
    color: var(--icon-color);
}

/* Update dot styles */
.update-dot {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 10px;
    height: 10px;
    background-color: #f5014f;
    border-radius: 50%;
}

#userInfoButton {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: none;
}

#updateButtonContainer {
    margin-top: 5px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.update-label-container {
    position: relative;
}

.update-label-container .update-dot {
    position: absolute;
    top: -2px;
    right: -12px;
    width: 8px;
    height: 8px;
    background-color: #f5014f;
    border-radius: 50%;
}

#customPinToggleContainer,
#darkModeToggleContainer {
    margin-bottom: 10px;
}

#userMenuContainer1 {
    box-shadow: 0 4px 8px var(--shadow-color);

}

#userMenuContainer2 {
    box-shadow: 0 4px 8px var(--shadow-color);
}

#userMenuContainer1.active {
    border: 1px solid transparent;
    box-shadow: 0 0 0 2px #1ED760, 0 2px 4px transparent;
}

#userMenuContainer2.active {
    border: 1px solid transparent;
    box-shadow: 0 0 0 2px #FA243C, 0 2px 4px transparent;
}

.notLoggedIn {
    color: var(--not-logged-in);
    font-size: 13px;
}

.userContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    min-height: 55px;
}

.dspRadioButtonContainer {
    display: flex;
    align-items: center;
    /* Vertically center items */
    gap: 5px;
    /* Optional spacing between icon and content */
}