/*
 * peakgear-icons.css — Additional CSS for PeakGear
 */

/* Account Icon Button (for guests) */
.account-icon-btn {
    display: none;
}

@media (min-width: 768px) {
    .account-icon-btn {
        display: flex;
        align-items: center;
    }
}

.account-user-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    color: #ffffff !important;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none;
}

.account-user-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.account-user-icon {
    width: 1.5rem;
    height: 1.5rem;
}
