.user-login-required-container {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 500px !important;
    padding: 30px;
    border: 1px solid lightgray;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.user-profile-container {
    position: relative;
    display: flex;
    border: 1px solid lightgray;
}

.user-profile-container input {
    background-color: white;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
    line-height: 1;
    margin-bottom: 10px;
}

.user-profile-container input:focus {
    outline-color: black;
}

.user-profile-container button {
    margin-top: 10px;
    margin-bottom: 10px;
    width: fit-content;
}

.user-profile-container button:disabled {
    background-color: darkgray;
}

.user-profile-left-column {
    border-right: 1px solid lightgray;
    text-align: center;
}

.user-profile-image {
    border-radius: 50%;
    background-color: black;
    color: white;
    width: 80px;
    height: 80px;
    font-size: 20px;
    line-height: 80px;
    display: inline-block;
    margin-top: 10px;
}

.user-profile-menu {
    margin-top: 10px;
}

.user-profile-menu-item {
    padding: 10px 20px;
    cursor: pointer;
    display: block;
    color: black;
    text-decoration: none !important;
}

.user-profile-menu-item.selected, .user-profile-menu-item:hover {
    background-color: rgb(65, 65, 65);
    color: white;
}

.user-profile-right-column {
    padding: 30px;
    width: 100%;
}

.user-menu-content {
    display: none;
}

.user-menu-content.selected {
    display: flex;
    flex-direction: column;
}

.premium-plan-purchase-incentive {
    width: 100%;
    padding: 10px 20px;
    border: 3px dashed darkviolet;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.premium-plan-purchase-incentive a {
    color: darkviolet;
    font-weight: bold;
}

.spinner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 9999;
    flex-wrap: wrap;
    flex-direction: column;
    display: none;
}

.spinner-overlay strong {
    color: white;
    width: 100%;
    margin-bottom: 20px;
    font-size: 25px;
}

.spinner {
    display: block;
    width: 80px;
    height: 80px;
    border: 8px solid lightgray;
    border-radius: 50%;
    border-top: 8px solid #3498db;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}