/* Switch Identity Button */
.switch-id-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
}

.switch-id-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

/* Gate Alias List */
.alias-list-gate {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    justify-content: center;
}

.gate-alias-btn {
    background: rgba(33, 200, 255, 0.1);
    border: 1px solid rgba(33, 200, 255, 0.3);
    color: #21c8ff;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gate-alias-btn:hover {
    background: rgba(33, 200, 255, 0.2);
    transform: translateY(-1px);
}

.pulse-fade {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}