#online-counter {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #ffffff;
    color: #000000;
    padding: 10px 15px;
    border: 1px solid #000000;
    font-family: 'Sono', monospace;
    font-weight: 300;
    font-size: 0.8em;
}

#alone, #together, #hangout {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1em;
    font-family: 'Sono', monospace;
    font-weight: 300;
    text-align: center;
}

/* Set initial states */
#together {
    display: none;
}

#hangout {
    display: none;
}

#tea {
    font-size: 2em;
}

#enter:disabled {
    border-radius: 50px;
    padding: 10px 20px;
    opacity: 0.5;
    background-color: #cccccc;
    cursor: not-allowed;
    font-family: 'Sono', monospace;
    font-weight: 300;
    font-size: 2em;
    border: none;
}

#enter:enabled {
    border-radius: 50px;
    padding: 10px 20px;
    background-color: #f7cd4e;
    color: #000000;
    font-family: 'Sono', monospace;
    font-weight: 300;
    font-size: 2em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

#enter:enabled:hover {
    transform: scale(1.05);
}