html, body {
    background-color: rgb(14, 14, 14);
    margin: 0;
    padding: 0;
    color: orange;
}

.tab-content {
    position: absolute;
    display: none;
    padding: 20px;
    width: 400px;
    top: 80px;
    background-color: #333;
    color: rgb(255, 140, 32);
    margin: 20px;
    border-radius: 10px;
    overflow-x: auto;
}

@media (max-width: 600px) {
    .tab-content {
        width: 85%;
        margin: 10px;
        padding: 10px;
        top: 80px;
        border-radius: 5px;
    }
}

.tab-content.active {
    position: absolute;
    display: block;
}

.noSelect {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.button {
    appearance: none;
    background-color: #363636;
    border: 1px solid rgba(13, 13, 14, 0.15);
    border-radius: 6px;
    box-sizing: border-box;
    color: rgb(255, 140, 32);
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    list-style: none;
    padding: 6px 16px;
    position: relative;
    transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
}
  
.button:hover {
    background-color: #333333;
    text-decoration: none;
    transition-duration: 0.1s;
}

.button:active {
    background-color: #292929;
    transition: none 0s;
}


#login-button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    border-radius: 6px;
    border: none;
    background: linear-gradient(180deg, #ff7300 0%, #812f00 100%);
    background-origin: border-box;
    box-shadow: 0px 0.5px 1.5px rgba(54, 122, 246, 0.25), inset 0px 0.8px 0px -0.25px rgba(255, 255, 255, 0.2);
    touch-action: manipulation;
    color: black;
}

#login-button:hover {
    background: linear-gradient(180deg, #e76800 0%, #702900 100%);
    box-shadow: inset 0px 0.8px 0px -0.25px rgba(255, 255, 255, 0.2), 0px 0.5px 1.5px rgba(80, 35, 8, 0.25), 0px 0px 0px 3.5px rgba(206, 93, 27, 0.5);
    outline: 0;
}


#login-button:active {
    background: linear-gradient(180deg, #af4f00 0%, #4e1d00 100%);
    outline: 0;
}



#unverifiedAccountPopup {
    z-index: 999;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
  
.popup {
    font-family: Arial, sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1d1d1d;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
  
.popup-content {
    text-align: center;
}
  
.popup .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
  }
  
.popup button {
    background-color: #4caf50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
  
.popup button:hover {
    background-color: #45a049;
}
