body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: #121212;
    color: #e0e0e0;
}

.user-logout-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.logout-btn {
    display: flex;
    align-items: center;
    background: #1e1e1e;
    border: 1px solid #333;
    padding: 8px 12px;
    border-radius: 50px;
    cursor: pointer;
    color: #e0e0e0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.logout-btn:hover {
    background: #cf6679;
    border-color: #ffb4ab;
}

.user-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
    border: 1px solid #444;
}

.user-display-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
}

.tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.8rem;
    pointer-events: none;
}

.user-logout-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.nav-controls {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-btn {
    background: #1e1e1e;
    color: #e0e0e0;
    border: 1px solid #333;
    padding: 10px 18px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.nav-btn:hover {
    background: #2a2a2a;
    border-color: #555;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

/* Only slide the top-nav buttons, not pagination buttons */
.nav-controls .nav-btn:hover {
    transform: translateX(5px);
}

.nav-btn:active {
    transform: translateY(0);
}
