/* Fixed container for login/welcome */
.user-welcome, .login-container {
    position: fixed;
    top: 150px;
    right: 10px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px; /* space between text and button */
}

/* Welcome message */
.user-welcome span {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    font-family: Arial, sans-serif;
}

/* Buttons */
button.button.login, .logout-btn {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Login button */
button.button.login {
    background-color: #28a745; /* green */
    color: #fff;
}

button.button.login:hover {
    background-color: #218838;
}

/* Logout button */
.logout-btn {
    background-color: #dc3545; /* red */
    color: #fff;
}

.logout-btn:hover {
    background-color: #a71d2a;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .user-welcome span, button.button.login, .logout-btn {
        font-size: 16px;
        padding: 6px 12px;
    }
    .user-welcome, .login-container {
        top: 120px;
        right: 5px;
        flex-direction: column;
        align-items: flex-end;
    }
}
