.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.auth-content {
    background: white;
    width: 400px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
}

.auth-tabs {
    display: flex;
    margin-bottom: 20px;
}

.tab {
    flex: 1;
    padding: 10px;
    border: none;
    background: #f0f0f0;
    cursor: pointer;
}

.tab.active {
    background: #4CAF50;
    color: white;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-form input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.auth-controls {
    /* position: fixed; */
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    margin-left: auto;
}

#userInfo {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Update modal positioning */
.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}